Created
August 14, 2019 02:45
-
-
Save hanachin/311299bbbb19628c9249dd860765e641 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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