// ==UserScript== // @name General Magnet Link Cleaner // @description Reduces magnet links to their HASH source // @namespace IAmTheEvil404 // @version 2.7 // @license Public Domain // @include http*://yts.ag // @include http*://kat.cr // @include http*://rarbg.to // @include http*://thepiratebay.la // @include http*://thepiratebay.vg // @include http*://eztv.ag // @include http*://showrss.info // @include http*://new.showrss.info // @grant none // @downloadURL none // ==/UserScript== $('a[href^="magnet:"]').each(function() { var $button = $(this); var href = $button.attr('href'); if (href) $button.attr('href', href.replace(/&.*$/, '')); });