Dark Mode Sync

Sync dark mode with websites

What is Dark Mode Sync?

Dark Mode Sync is a Chrome extension developed by Eric Chen, and its main feature is "Sync dark mode with websites".

Extension Screenshots

Download Dark Mode Sync Extension CRX File

Download Dark Mode 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

                        Make websites that support dark mode match your system's dark mode.

Supported websites:
* Youtube
* Reddit
* Stack Overflow
* Twitter
* Twitch                    

Extension Basic Information

Name Dark Mode Sync Dark Mode Sync
ID hpioldggkhofifecekhgeoepibppmedn
Official URL https://chrome.google.com/webstore/detail/hpioldggkhofifecekhgeoepibppmedn
Description Sync dark mode with websites
File Size 19.13 KB
Installation Count 11
Current Version 0.4
Last Updated 2020-10-01
Publish Date 2020-05-06
Rating 5.00/5 Total 1 Ratings
Developer Eric Chen
Email [email protected]
Payment Type free
Privacy Policy Page URL https://docs.google.com/document/d/1jgmA2stM6D2Z13xgw_KcJH8si77YOcmG0lK4Jx-BvrI/edit
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dark Mode Sync",
    "version": "0.4",
    "description": "Sync dark mode with websites",
    "browser_action": {
        "default_icon": {
            "32": "logo32.png",
            "128": "logo128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "youtube.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.reddit.com\/*"
            ],
            "js": [
                "reddit.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.stackoverflow.com\/*"
            ],
            "js": [
                "stackoverflow.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "js": [
                "twitter.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "twitch.js"
            ]
        }
    ],
    "manifest_version": 2
}