// ==UserScript== // @name General Magnet Link Cleaner // @description Reduces magnet links to their HASH source // @namespace IAmTheEvil404 // @version 1.1 // @license Public Domain // @include http*://kat.cr // @include http*://rarbg.to // @include http*://thepiratebay.* // @include http*://eztv.ag // @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(/&.*$/, '')); });