您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Removes useless content from extratorrent.cc
// ==UserScript== // @name Slim Extratorrent // @namespace http://extratorrent.cc/cactuspie // @description Removes useless content from extratorrent.cc // @include /^https?://(www\.)?extratorrent\.cc.*/ // @require https://code.jquery.com/jquery-3.1.1.min.js // @version 1 // @run-at document-end // ==/UserScript== (function(){ $(".blog_left").first().parent().remove(); $("h2").remove(); $(".tztbl").remove(); $(".tztblpage").remove(); $(".copyrights").remove(); $(".h_search").prop("width", "70%"); $(".stext").prop("style", "width: 100%"); $(".warnIp").parent().remove(); $(".warn3").parent().remove(); $(".warn4").parent().remove(); $(".wrn_txt8").parent().parent().remove(); $("script[src*='adskeeper']").remove(); $("a[href*='adskeeper']").parent().parent().remove(); $("img[src='https://images4et.com/images/other/warning-vpn2.gif']").closest("table").remove(); })();