Greasy Fork is available in English.

Remove"(ED2000.COM)"

就是把ed2K连接里的"(ED2000.COM)"去除而已

// ==UserScript==
// @name        Remove"(ED2000.COM)"
// @namespace   https://greasyfork.org/users/85
// @include     http://www.ed2000.com/ShowFile*
// @description 就是把ed2K连接里的"(ED2000.COM)"去除而已
// @version     3.1
// @grant       none
// ==/UserScript==
var temp=document.querySelectorAll('a[href*="ed2k"]');
[].forEach.call(temp,function(each){each.href = each.href.replace('(ED2000.COM)','');})