Skip to content

Instantly share code, notes, and snippets.

@hanachin
Created August 14, 2019 02:45
Show Gist options
  • Save hanachin/311299bbbb19628c9249dd860765e641 to your computer and use it in GitHub Desktop.
Save hanachin/311299bbbb19628c9249dd860765e641 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Anarchy Golf reveal statics
// @namespace https://hanach.in/
// @version 0.1
// @description Automatically check code-statics
// @author hanachin
// @match http://golf.shinh.org/p.rb?*
// @grant none
// @run-at document-idle
// ==/UserScript==
(function() {
'use strict';
const reveal = document.querySelector('input[name="reveal"]');
reveal.checked = true;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment