您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
Highlight favourite fandoms on AO3 user dashboards
当前为
Make your favourite fandoms easy to see when visiting a user's dashboard. Choose any combination of the following:
You can add a fandom to the custom highlighting list without taking it off the main list, e.g.:
let fandomsToHighlight = ["Original Work", "Critical Role", "Harry Potter", "Naruto", "Scooby Doo"]
let fandomsInColour = {"Naruto":"orange"}
shows Naruto highlighted in orange.
The search matches any string which contains the search text:
"Sherlock"
matches "Sherlock (BBC)", "Sherlock Holmes" and "Young Sherlock Holmes",
Use regular expressions such as "^" (string start) and "$" (string end) for more control:
"^Sherlock"
matches "Sherlock Holmes" but not "Young Sherlock Holmes"
"^Star Trek$"
matches only "Star Trek", not "Star Trek: The Original Series"
When adding fandoms to the list, take care to escape the following special characters with a backslash "\":
. + * ? ^ $ [ ] { } | \
e.g. for House M.D. write "House M\.D\."
Parentheses ()
cannot currently be escaped, not sure why. As a workaround, use the wildcard "."
instead: for "The Avengers (Marvel)" write "The Avengers .Marvel."