Last active
October 17, 2020 09:41
-
-
Save linuxgemini/4afbe8f8fa3d0431f7d2013d73ebf66f 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 EXPAND THIS WHOIS BITCH | |
// @namespace http://tampermonkey.net/ | |
// @version 69.69.69.69 | |
// @updateURL https://gist.github.com/linuxgemini/4afbe8f8fa3d0431f7d2013d73ebf66f/raw | |
// @description try to take over the world, well shit | |
// @author linuxgemini | |
// @match https://ripe.net/* | |
// @match https://*.ripe.net/* | |
// @match https://*.db.ripe.net/* | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
"use strict"; | |
window.addEventListener('load', (event) => { | |
setTimeout(() => { | |
let box = document.getElementById("showEntireObjectInViewer"); | |
if (box && box.innerText === "Show entire object...") box.click(); | |
if (Array.isArray(box)) { | |
for (const actualBox of box) { | |
if (actualBox.innterText === "Show entire object...") box.click(); | |
} | |
} | |
}, 1.234 * 1000); | |
}); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment