Last active
June 9, 2021 11:16
-
-
Save L0laapk3/2f3ef905d6f10f4d192bc161e8ce03db to your computer and use it in GitHub Desktop.
yare.io autostart
This file contains 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 yare.io autostart | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @author L0laapk3 | |
// @match yare.io/d1/* | |
// @run-at document-idle | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
const t = setInterval(_ => { | |
if (!window.update_code) | |
return; | |
window.update_code(); | |
clearInterval(t); | |
}, 50); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment