Website Theme Sync

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

Website Theme Sync là gì?

Website Theme Sync là một tiện ích mở rộng Chrome được phát triển bởi p.ryaposov, và tính năng chính của nó là "Keeps the web page color theme settings in sync with system color theme.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Website Theme Sync

Tải xuống các tệp mở rộng Website Theme Sync dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Website Theme Sync Website Theme Sync
ID nofdgmcbecpbdgcmlpmcfkpgdefomjbn
URL Chính Thức https://chromewebstore.google.com/detail/website-theme-sync/nofdgmcbecpbdgcmlpmcfkpgdefomjbn
Mô tả Keeps the web page color theme settings in sync with system color theme.
Kích Thước Tệp 62.49 KB
Số Lần Cài Đặt 22
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2021-06-17
Ngày Phát Hành 2021-06-16
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển p.ryaposov
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/ryaposov/website-theme-sync
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}