您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Versteckt Threads mit Lesezeichen in der Threadliste eines Boards
// ==UserScript== // @name mods.de Forum - Threadliste // @description Versteckt Threads mit Lesezeichen in der Threadliste eines Boards // @author TheRealHawk // @license MIT // @namespace https://greasyfork.org/en/users/18936-therealhawk // @match https://forum.mods.de/board.php* // @icon https://i.imgur.com/wwA18B8.png // @version 1.0 // @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js // ==/UserScript== // Workaround to get rid of "is not defined" warnings /* globals $, jQuery */ $('body > div:eq(2) > table:eq(1) > tbody > tr > td > table > tbody > tr').each(function(){ if ($('td:eq(2) > a', this).hasClass('bookmark')){ $(this).hide(); } });