feat: add dark mode support for account settings page(帳號中心頁)

This commit is contained in:
Hakadao
2024-07-10 15:55:42 +08:00
parent a079a8d63a
commit 1364fa1269
4 changed files with 50 additions and 1 deletions

View File

@@ -67,8 +67,10 @@ function isSupportedPages() {
|| /https?:\/\/(?:www\.)?bilibili\.com\/read\/(?!pcpreview).*/.test(currentUrl)
// 404 page
|| /^https?:\/\/(?:www\.)?bilibili\.com\/404.*$/.test(currentUrl)
// creative center page
// creative center page 創作中心頁
|| /^https?:\/\/member\.bilibili\.com\/platform.*$/.test(currentUrl)
// account settings page 帳號中心頁
|| /^https?:\/\/account\.bilibili\.com\/.*$/.test(currentUrl)
) {
return true
}