Website Theme Sync

Keeps the web page color theme settings in sync with system color theme.

Website Theme Syncคืออะไร?

Website Theme Sync เป็นส่วนขยายของ Chrome ที่พัฒนาโดย p.ryaposov และคุณลักษณะหลักของมันคือ "Keeps the web page color theme settings in sync with system color theme."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Website Theme Sync

ดาวน์โหลดไฟล์ส่วนขยาย Website Theme Sync ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Why?
Some web apps have full light/dark theme support, but don't allow you to sync it with OS for some reason. The goal of this browser extension is to make the website keep the theme in sync with OS settings.

Supported web apps:
- Twitter.com
- Slack.com
- Coderslang.com                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Website Theme Sync Website Theme Sync
ID nofdgmcbecpbdgcmlpmcfkpgdefomjbn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/website-theme-sync/nofdgmcbecpbdgcmlpmcfkpgdefomjbn
คำอธิบาย Keeps the web page color theme settings in sync with system color theme.
ขนาดไฟล์ 62.49 KB
จำนวนการติดตั้ง 22
เวอร์ชันปัจจุบัน 0.1
อัปเดตครั้งล่าสุด 2021-06-17
วันที่เผยแพร่ 2021-06-16
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา p.ryaposov
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/ryaposov/website-theme-sync
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Website Theme Sync",
    "manifest_version": 3,
    "version": "0.1",
    "description": "Keeps the web page color theme settings in sync with system color theme.",
    "icons": {
        "200": "icons\/200x200.png",
        "400": "icons\/400x400.png",
        "600": "icons\/600x600.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.slack.com\/*"
            ],
            "js": [
                "slack.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.coderslang.com\/*"
            ],
            "js": [
                "coderslang.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "twitter.js"
            ]
        }
    ]
}