提问人:Wizzy 提问时间:7/1/2022 最后编辑:wOxxOmWizzy 更新时间:7/1/2022 访问量:186
时尚/手写笔:A:访问和A:链接仅影响某些网站
Stylish / Stylus : A:visited and A:link only affects certain websites
问:
✨ 我是第一次使用使用 C 编程语言的 Chrome 扩展程序 Stylish 和 Stylus。
我的目标是在 Reddit 和 DeviantArt 论坛等论坛网站上使用它,这样我就知道我读过哪些论坛帖子。默认情况下,如果没有 Stylish 或 Stylus 扩展,DeviantArt 和 Gaia Online 不会用颜色将论坛帖子标记为已读或未读。
我的代码很简单:
@-moz-document url-prefix("https://www.deviantart.com/forum/community/projects/"),
domain("toyhou.se"),
url-prefix("https://www.chickensmoothie.com/Forum/viewforum.php?f=121"),
url-prefix("reddit.com"),
url-prefix("https://forums.furaffinity.net/forums/art-exchange/"),
url-prefix("https://www.gaiaonline.com/forum/art-freebies/f.108/") {
A:visited {
color: magenta
}
A:link {
color: cyan
}
}
代码工作的网站(链接是彩色的):
https://www.chickensmoothie.com/Forum/viewforum.php?f=121
https://forums.furaffinity.net/forums/art-exchange/
代码不起作用的站点(无彩色链接):
https://www.gaiaonline.com/forum/art-freebies/f.108/
https://www.deviantart.com/forum/community/projects/
我想知道如何为代码不起作用的网站获得相应着色的链接。最后,我需要为链接着色的代码。谢谢!🔮✨
答: 暂无答案
评论
!important
color: magenta !important
color: cyan !important