Greasy Fork

TPB Redirect Remover

The Pirate Bay links redirect remover

当前为 2019-05-31 提交的版本,查看 最新版本

// ==UserScript==
// @name         TPB Redirect Remover
// @namespace    https://github.com/jomut9/tpb-redirect-remover
// @version      0.01
// @description  The Pirate Bay links redirect remover
// @author       jomut9
// @match        *://thepiratebay*.org/?url=*
// ==/UserScript==

(function() {
    'use strict';
    var url = document.URL.split('=');
    if (!url[1].includes('thepiratebay')){
        location.replace(url[1]);
    }
})();