// ==UserScript== // @name Disable CountDown On BR Websites To Download Torrent Movies // @namespace hacker09 // @version 0.1 // @description Disable JS Counter On BR Websites To Download Movies in Torrent That Redirect Users To https://www.mastercuriosidadesbr.com // @author You // @match https://www.mastercuriosidadesbr.com/* // @grant none // @run-at document-end // @downloadURL none // ==/UserScript== (function() { 'use strict'; document.querySelector("#aviso").style.display = "none"; //Disable Counter Text document.querySelector("#loko").style.display = "none"; //Disable Fake Download Button document.querySelector("#baixar").style.display = ""; //Enable Real Download Button document.oncontextmenu = function(){} //Enables Right Mouse Click })();