您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
加油
当前为
// ==UserScript== // @name 一亩三分地 Filter // @namespace http://tampermonkey.net/ // @version 0.2 // @description 加油 // @author You // @match http://www.1point3acres.com/bbs/forum.* // @match https://www.1point3acres.com/bbs/forum.* // @grant none // ==/UserScript== (function() { 'use strict'; var table = document.getElementById("threadlisttableid"); // console.log(table.rows.length); // debug for (var i = table.rows.length - 1; i > 0; i--) { var text = table.rows[i].innerHTML.toString(); if (text.includes('在线笔试')){ table.rows[i].remove(); continue; } if (!text.includes('Google') && !text.includes('Youtube')){ table.rows[i].remove(); } } })();