Skip to content

Instantly share code, notes, and snippets.

@mitzamitz
Last active November 29, 2022 01:35
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mitzamitz/4903612c6de47e1581e9c5d788393e55 to your computer and use it in GitHub Desktop.
Save mitzamitz/4903612c6de47e1581e9c5d788393e55 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name fuck you sym
// @namespace http://tampermonkey.net/
// @version 0.1
// @author mitza
// @match https://www.torn.com/page.php?sid=stocks
// @icon https://www.google.com/s2/favicons?sz=64&domain=torn.com
// @grant none
// @run-at document-idle
// ==/UserScript==
window.addEventListener('load', function() {
let stocks = $("#stockmarketroot > div.stockMarket___T1fo2")[0].children;
for(let listing in stocks){
if(stocks[listing].id === '16'){
$(stocks[listing]).remove(); // fuck you sym
}
}
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment