Extratorrent Redirecter| Karzz

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

当前为 2016-09-03 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Extratorrent Redirecter| Karzz
  3. // @namespace Etredirect
  4. // @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
  5. // @match *://extratorrent.cc/*
  6. // @match *://www.extratorrent.cc/*
  7. // @version 2016.09.04
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. window.location.replace((document.location + "").replace("extratorrent.cc", "extratorrent.bypassed.org"));
  14. })();