Warning: fopen(/www/sites/update.greasyfork.icu/index/store/forever/de44dff537d7ec06c125b35c05daddc3.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.4
// @description Piratebay download via torrents
// @author PXgamer
// @include *thepiratebay.org/*
// @require https://code.jquery.com/jquery-1.12.4.min.js
// @grant none
// @downloadURL none
// ==/UserScript==
(function () {
'use strict';
var user_preferred_cache = 'cache_1';
var preferred_caches = {
cache_1: {
name: 'BTCache',
url: 'http://btcache.me/torrent/',
end: ''
},
cache_2: {
name: 'Torrage',
url: 'https://torrage.info/torrent.php?h=',
end: ''
},
cache_3: {
name: 'iTorrents',
url: 'https://itorrents.org/torrent/',
end: '.torrent'
}
};
// Download image
var dataURI = 'iVBORw0KGgoAAAANSUhEUgAAAAwAAAALCAYAAABLcGxfAAAACXBIWXMAAAsSAAALEgHS3X78AAABfklEQVQokWWQzUsbURRHzxtfkknSYq2UKNaiYncVrdBCUAoKKuKi4EKLbioqbrpp9/07unalG1Faa0EoboQoBT+QoKAgook4mMzEySRqJvO60UjihQsXfudwL1cAhOt+aKGal05j0wudiiq6Hnv/tj571pdZAAlQW/8k8vV7jz4QDVfyoKD9XXzas3gQkFWkixqJzGMeAL8sjRLAUSJvu5C0yrkrR7H45xoV9HllQupW3ORdSN5tMPMwG1NYFy6epUCXqiT4u5bmNCH0i7wgdwlGFowr8AcFskbiKkUhEHrL+6V5TVMpqQJacmyy91t1tc6NC0oD7a6LnsAsSOSrvqcF42TE526PCgDRvzI0Nd653NwUwXTAsOHcgoQJiTTYR7uuno23OavjB+L+tqqPq68Hu5vjH6KtvqQJZyacpmEntpEJZQ8azd8TNkBJANBH10ItDc9Ohwc7nh8bRRZ+ru+Hc4dvUr+mS18qEwDCn/4KXyC4mcva27cLAzOV+X9eUpMXhNIxOAAAAABJRU5ErkJggg==';
function getHash(element) {
var hash = $(element).attr('href').split(":")[3];
return hash.split("&")[0];
}
// Add to browsing pages
$('a[title="Download this torrent using magnet"][href^="magnet:"]').each(function () {
var hash = getHash(this);
$(this).after('
');
});
// Add to torrent pages
$('a[href^="magnet:"][title="Get this torrent"]').after(function () {
var hash = getHash(this);
$(this).after(' Download torrent file');
});
})();