Website Theme Sync

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

Website Theme Syncとは何ですか?

Website Theme Syncはp.ryaposovによって開発されたChromeの拡張機能で、その主な機能は「Keeps the web page color theme settings in sync with system color theme.」です。

拡張機能のスクリーンショット

screenshot

Website Theme Sync拡張機能のCRXファイルをダウンロード

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
Eメール [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"
            ]
        }
    ]
}