Greasy Fork is available in English.

ShowDL OnTorrent.net

Better use OnTorrent.net

Mint 2017.04.19.. Lásd a legutóbbi verzió

// ==UserScript==
// @name        ShowDL OnTorrent.net
// @description Better use OnTorrent.net
// @namespace   Aymeric017
// @include     http*://www.ontorrent.net/*/*/*/
// @version     1.0.1
// @grant       none
// ==/UserScript==

jQuery(document).ready(function($) {
	var id = window.location.toString().split("/")[5];
	$.ajax(
		{
			type:"POST",
			url:"/showme.php",
			data:"id="+id+"&name=torrent",
			cache:false,
			success:function(html){
				$("#showlinks").html(html)
				var url = $("#showlinks").find('.btn-xsedt').last().attr("href");
				$("#forall").html('<a class="ladda-button" href="'+url+'" data-color="mint"><span class="ladda-label"><span class="glyphicon glyphicon-magnet"></span> Download »</span><span class="ladda-spinner"></span><div class="ladda-progress" style="width: 209px;"></div></a>')
			}
		}
	);
});