Greasy Fork is available in English.
添加各种功能并改善 Greasy Fork 体验
当前为
Please make sure you install the script from greasyfork.org, not fake sites.
GreasyFork++ GreasyFork
Credit to iFelix18 GitHub
no-cacheGreasy Fork Enhance - Flat LayoutNonLatin 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 fontbaidugoogle fontsBaidu or GOOGLE FONTS will also be filtered out.testing, re/(baidu|google\sfonts)/itestingre/(baidu|google\sfonts)/ire/(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, testingre/bot/i and re/hack/itestingFor 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.