// ==UserScript== // @name TPB Torrent Downloads Fork // @version 0.5.3 // @description Piratebay download via torrents // @include *thepiratebay.se/* // @include *thepiratebay.org/* // @require https://code.jquery.com/jquery-latest.min.js // @namespace https://greasyfork.org/users/59385 // @downloadURL none // ==/UserScript== (function() { 'use strict'; $('a[href^="magnet:"]').each(function() { var hash = $(this).attr('href').split(":")[3]; hash = hash.split("&")[0]; $(this).after('
Download torrent file'); console.log(hash); }); })();