« Greasemonkey: YGG script » : différence entre les versions
Page créée avec « <syntaxhighlight lang="javascript"> // ==UserScript== // @name YggTorrent // @description Ygg script // @author Adadov // @version 1.0 // @require http... » |
Aucun résumé des modifications |
||
Ligne 15 : | Ligne 15 : | ||
}); | }); | ||
</syntaxhighlight> | </syntaxhighlight> | ||
[[Category:Développement]] |
Dernière version du 2 janvier 2022 à 21:18
// ==UserScript==
// @name YggTorrent
// @description Ygg script
// @author Adadov
// @version 1.0
// @require https://code.jquery.com/jquery-3.3.1.slim.min.js
// @include /^https?://.*\.yggtorrent\..*\/engine\/search/
// ==/UserScript==
$('.results thead tr th:eq(1)').after('<th class="no">DL</th>');
$('.results tbody tr').each(function(){
torrent_id = $('a#get_nfo', this).attr('target');
$('td:eq(1)', this).after('<td><a href="https://www2.yggtorrent.gg/engine/download_torrent?id='+torrent_id+'"><img src="https://pirateproxy.bet/static/img/icon-magnet.gif" /></a></td>');
});