Website Theme Sync

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

Was ist Website Theme Sync?

Website Theme Sync ist eine Chrome-Erweiterung, die von p.ryaposov entwickelt wurde, und ihr Hauptmerkmal ist "Keeps the web page color theme settings in sync with system color theme.".

Erweiterungsscreenshots

screenshot

Website Theme Sync-Erweiterungs-CRX-Datei herunterladen

Laden Sie Website Theme Sync-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Website Theme Sync Website Theme Sync
ID nofdgmcbecpbdgcmlpmcfkpgdefomjbn
Offizielle URL https://chromewebstore.google.com/detail/website-theme-sync/nofdgmcbecpbdgcmlpmcfkpgdefomjbn
Beschreibung Keeps the web page color theme settings in sync with system color theme.
Dateigröße 62.49 KB
Installationsanzahl 22
Aktuelle Version 0.1
Letztes Update 2021-06-17
Veröffentlichungsdatum 2021-06-16
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler p.ryaposov
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://github.com/ryaposov/website-theme-sync
Unterstützte Sprachen 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"
            ]
        }
    ]
}