Skip to content

Instantly share code, notes, and snippets.

View estelsmith's full-sized avatar

Estel Smith estelsmith

View GitHub Profile
@estelsmith
estelsmith / defer-js-snippets.php
Last active February 3, 2020 19:54
Helpful Code Snippets!
<?php
/**
* Plugin Name: CM Defer Inline JavaScript
* Description: Wraps all inline javascript to fire when document.readyState becomes interactive
*/
function cm_defer_js_script_wrapper()
{
$wrapper = <<<EOF
document.addEventListener('readystatechange', function () {
@estelsmith
estelsmith / emulator.games.user.js
Last active March 29, 2021 11:22
Updates the download button on emulator.games to ROM pages to link directly to the file download
// ==UserScript==
// @name emulator.games download
// @version 0.0.2
// @description Fixes the download button on emulator.games to actually download ROMs
// @author estelsmith
// @match https://emulator.games/roms/*/*/
// @grant none
// ==/UserScript==
(function($, romId) {