Greasy Fork

General Magnet Link Cleaner

Reduces magnet links to their HASH source

当前为 2015-12-05 提交的版本,查看 最新版本

// ==UserScript==
// @name         General Magnet Link Cleaner
// @description  Reduces magnet links to their HASH source
// @namespace    IAmTheEvil404
// @version      2.5
// @license      Public Domain
// @include      http*://yts.*
// @include      http*://kat.cr
// @include      http*://rarbg.to
// @include      http*://thepiratebay.la
// @include      http*://thepiratebay.vg
// @include      http*://eztv.ag
// @include      http*://showrss.info
// @grant        none
// ==/UserScript==

$('a[href^="magnet:"]').each(function() {
    var $button = $(this);
    var href = $button.attr('href');
    if (href)
        $button.attr('href', href.replace(/&.*$/, ''));
});