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

  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.10.18
  8. // @grant none
  9. // @author Singaraju Karthik (@skarthik345)
  10. // @license GNU LGPL v3 (https://www.gnu.org/licenses/lgpl-3.0.html)
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. window.location.replace((document.location + "").replace("extratorrent.cc", "extratorrent.unblockall.xyz"));
  16. })();