您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Highlights tags in tagsets when you hover over them.
/* ==UserStyle== @name Archive Of Our Own - Highlight tagset tags on hover @description Highlights tags in tagsets when you hover over them. @version 1.1 @namespace https://greasyfork.org/users/3759 ==/UserStyle== */ @-moz-document domain("archiveofourown.org") { .fandom.listbox.group .tags.index.group.commas li, .cast.listbox.group li { padding-right: 0; margin-right: 0.25em; } .fandom.listbox.group .tags.index.group.commas li:hover, .cast.listbox.group li:hover { background: #910000 !important; color: #FFFFFF !important; } /* If you're using a custom style that changes the text and background color of the site, change these values to whatever values are provided by that style. Otherwise, just leave this alone. */ .fandom.listbox.group .tags.index.group.commas li:hover::after, .cast.listbox.group li:hover::after { background: #FFFFFF !important; color: #000000; } }