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
电子邮箱 [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"
            ]
        }
    ]
}