Website Theme Sync

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

What is Website Theme Sync?

Website Theme Sync is a Chrome extension developed by p.ryaposov, and its main feature is "Keeps the web page color theme settings in sync with system color theme.".

Extension Screenshots

screenshot

Download Website Theme Sync Extension CRX File

Download Website Theme Sync extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Website Theme Sync Website Theme Sync
ID nofdgmcbecpbdgcmlpmcfkpgdefomjbn
Official URL https://chromewebstore.google.com/detail/website-theme-sync/nofdgmcbecpbdgcmlpmcfkpgdefomjbn
Description Keeps the web page color theme settings in sync with system color theme.
File Size 62.49 KB
Installation Count 22
Current Version 0.1
Last Updated 2021-06-17
Publish Date 2021-06-16
Rating 5.00/5 Total 1 Ratings
Developer p.ryaposov
Email [email protected]
Payment Type free
Help Page URL https://github.com/ryaposov/website-theme-sync
Supported Languages 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"
            ]
        }
    ]
}