NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name TradingView Seconde Killer // @namespace http://tampermonkey.net/ // @version 0.1 // @description TradingView Seconde menu kill :p // @author Humanzing // @updateURL https://openuserjs.org/meta/humanzing/TradingView_Seconde_Killer.meta.js // @match https://fr.tradingview.com/chart/* // @match https://www.tradingview.com/chart/* // @grant none // @license MIT // @run-at document-end // ==/UserScript== (function() { setTimeout(function(){ var el = document.getElementsByClassName('group-wWM3zP_M-'); document.getElementsByClassName('group-wWM3zP_M-')[1].addEventListener("click", function(event){ setTimeout(function(){ var elements = document.getElementsByClassName('dropdown-1zOBoqnG-')[0]; var c = elements.childNodes; for (var i = 0; i <= 3; i++) { c[0].remove(); } }, 100); }); }, 5000); })();