diff options
author | 1024x2 | 2018-06-02 18:10:42 +0100 |
---|---|---|
committer | GitHub | 2018-06-02 18:10:42 +0100 |
commit | 86e17c104ad80c4fe222208d80f749548fb65900 (patch) | |
tree | 1b83971d79340aa3804687a7f6373cdcb5c12983 | |
parent | 3479d18c24ce44550fa38f7dd21127928aab1b3a (diff) |
we don't need this anymore, windows93 now has boot
-rw-r--r-- | inject.user.js | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/inject.user.js b/inject.user.js deleted file mode 100644 index c059dae..0000000 --- a/inject.user.js +++ /dev/null @@ -1,33 +0,0 @@ -// ==UserScript== -// @name pkg93 injecter -// @namespace pkg93inject -// @version 0.2 -// @description Injects pkg93! -// @author 1024x2 -// @match *://www.windows93.net/* -// @match *://windows93.net/* -// @match *://v2.windows93.net/* -// ==/UserScript== - -// Thanks, Draco! -function loadJS (source, onready){ - var sc = document.createElement("script"); - sc.src = source; - sc.type = "text/javascript"; - if (onready) sc.addEventListener("load", onready); - document.head.appendChild(sc); - return sc; -} - -var interval = setInterval(function () { - try { - if (!!le) { - localStorage[".pkg93/userscript"] = ""; - clearInterval(interval); - loadJS("https://rawgit.com/pkg93/pkg93/master/pkg93.js", function () {}); - $notif("pkg93 loaded successfully!"); - } - } catch (err) { - console.error(err); - } -}, 5000); |