OxTorrent

Remove ads

目前為 2021-12-28 提交的版本,檢視 最新版本

// ==UserScript==
// @name         OxTorrent
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Remove ads
// @author       Ynizon
// @match        https://www.oxtorrent.be/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
     var tags = document.getElementsByTagName('script');
    tags[0].parentNode.removeChild(tags[0]); 

})();