Skip to content

Instantly share code, notes, and snippets.

@JMVS
Created January 12, 2022 17:02
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 JMVS/d85f018f30fe1ac975916eeb5b33d801 to your computer and use it in GitHub Desktop.
Save JMVS/d85f018f30fe1ac975916eeb5b33d801 to your computer and use it in GitHub Desktop.
TorrentPelis Countdown disabler
// ==UserScript==
// @name TorrentPelis Countdown disabler
// @version 0.1
// @author JMVS
// @grant none
// @description Disables de countdown timer when following download link
// @include https://*.torrentpelis.com/enlaces/*
// @match https://*.torrentpelis.com/enlaces/*
// ==/UserScript==
(function() {
var _oldt=t;
function t() {}
document.getElementsByClassName("counter")[0].style.cssText = "display: none";
document.getElementById("link").style.cssText = "display: inline; background-color=rgb(0, 112, 255)";
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment