On any web page it will check if the clicked links goes to Extratorrent.cc. If so, the link will be rewritten to proxy site
当前为
// ==UserScript==
// @name Extratorrent Redirecter| Karzz
// @namespace Etredirect
// @description On any web page it will check if the clicked links goes to Extratorrent.cc. If so, the link will be rewritten to proxy site
// @match *://extratorrent.cc/*
// @match *://www.extratorrent.cc/*
// @version 2016.09.04
// @grant none
// ==/UserScript==
(function() {
'use strict';
window.location.replace((document.location + "").replace("extratorrent.cc", "extratorrent.bypassed.org"));
})();