Skip to content

Instantly share code, notes, and snippets.

@L0laapk3
Last active June 9, 2021 11:16
Show Gist options
  • Save L0laapk3/2f3ef905d6f10f4d192bc161e8ce03db to your computer and use it in GitHub Desktop.
Save L0laapk3/2f3ef905d6f10f4d192bc161e8ce03db to your computer and use it in GitHub Desktop.
yare.io autostart
// ==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