NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name elitetorrent // @namespace elitetorrent // @description hace que te puedas descargar los torrents directamente desde la página de búsquedas y no tengas que entrar uno por uno en cada página... // @match http://www.elitetorrent.net/* // @version 1.1 // @author ptolomeoo // @grant none // @require http://code.jquery.com/jquery-1.11.2.min.js // @priority 1 // @run-at document-end // @downloadURL https://openuserjs.org/scripts/ptolomeoogmail.com/elitetorrent // ==/UserScript== 'use strict'; var links = document.getElementsByTagName("a"); //array for (var i=0,imax=links.length; i<imax; i++) { links[i].href = links[i].href.replace(/(torrent)\/(\w+)\/(.*)/, 'get-torrent/$2'); } // Your code here...