Remove ads
目前為
// ==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]);
})();