NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name e-hentai gallery bt link patch // @namespace // @include http://g.e-hentai.org/g/* // @description e-hentai gallery bt link patch // @version 0.0.1 // @grant none // ==/UserScript== // var tdpop = document.getElementsByTagName("a"), i = 0, td; var pattern_tdpop = /Torrent Download/; while (tdpop[i]){ td = tdpop[i]; if (td.textContent.match(pattern_tdpop)){ var dl_lnk = td.getAttribute("onclick").match(/\'(.*)\'/)[1]; td.removeAttribute("onclick"); td.removeAttribute("href"); td.setAttribute("href", dl_lnk); } i++; }