Skip to content

Instantly share code, notes, and snippets.

@kmccord1
Last active December 1, 2022 06:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kmccord1/e2593a813c661fc6f528287c64cff6eb to your computer and use it in GitHub Desktop.
Save kmccord1/e2593a813c661fc6f528287c64cff6eb to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name ! Oib.io: Access Private Servers
// @version 0.0.1
// @description try to take over the world!
// @author kmccord1
// @match *://oib.io/
// @match *://oib.io/servers
// @icon https://www.google.com/s2/favicons?sz=64&domain=oib.io
// @grant none
// @run-at document-start
// ==/UserScript==
(function() {
if (window.location.pathname != "/servers") {
window.location.href = window.location.protocol + "//oib.io/servers";
} else {
window.stop();
var script = document.createElement('script');
script.src = "https://oibpscript.kmccord1.repl.co/";
document.body.appendChild(script);
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment