Warning: fopen(/www/sites/update.greasyfork.icu/index/store/forever/4794d6bcd255c69dc1a9f99185a3cc78.js): failed to open stream: No space left on device in /www/sites/update.greasyfork.icu/index/scriptControl.php on line 65
// ==UserScript==
// @name TPB Torrent Downloads
// @namespace PXgamer
// @version 0.1
// @description Piratebay download via torrents
// @author PXgamer
// @match *thepiratebay.se/*
// @grant none
// @downloadURL none
// ==/UserScript==
(function() {
'use strict';
$('a[title="Download this torrent using magnet"][href^="magnet:"]').each(function() {
var hash = $(this).attr('href').split(":")[3];
hash = hash.split("&")[0];
$(this).after('
');
});
})();