Skip to content

Instantly share code, notes, and snippets.

@linuxgemini
Last active October 17, 2020 09:41
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 linuxgemini/4afbe8f8fa3d0431f7d2013d73ebf66f to your computer and use it in GitHub Desktop.
Save linuxgemini/4afbe8f8fa3d0431f7d2013d73ebf66f to your computer and use it in GitHub Desktop.
// ==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