您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
添加各种功能并改善 Greasy Fork 体验
当前为
Please make sure you install the script from greasyfork.org, not fake sites.
GreasyFork++ GreasyFork
Credit to iFelix18 GitHub
no-cache
Greasy Fork Enhance - Flat Layout
NonLatin
by default. This totally affects non-English users to use this script at the first time.GM_setValue
and GM_getValue
which are totally unused and obsoleted. @violentmonkey/shortcut
to 1.3.0white-space:nowrap
to block button (to avoid long script name split the button icon and button text)@sizzlemctwizzle/GM_config
to 2023.06.04firstUse
to show the settings dialog when the user first installs the script.@inject-into
to content
. This is incorrect since Greasy Fork+ 1.0.0.It supports both simple plain text filtering and regular expression (RegEx) filtering.
badiu, google font
baidu
google fonts
Baidu
or GOOGLE FONTS
will also be filtered out.testing, re/(baidu|google\sfonts)/i
testing
re/(baidu|google\sfonts)/i
re/(baidu|google\sfonts)/i
filters any text that matches either "baidu" or "google fonts".i
flag at the end indicates that the match is case-insensitive.re/bot/i re/hack/i, testing
re/bot/i
and re/hack/i
testing
For instance, if the input text includes any case-insensitive variant of both "bot" (e.g., Bot, BOT) and "hack" (e.g., Hack, HACK), or if it contains the word "testing" (case-insensitive), it will be filtered out.
Case-Insensitive Matching:
Both plain text filters and RegEx patterns (when the i
flag is used) are evaluated without case sensitivity.
RegEx Pattern Format:
re/
.re/<pattern>/<flags>
.Combining Conditions:
Multiple filtering conditions can be applied together. The system will block content if any of the specified conditions match.