Website Theme Sync

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

Wat is Website Theme Sync?

Website Theme Sync is een Chrome-extensie ontwikkeld door p.ryaposov, en de belangrijkste functie is "Keeps the web page color theme settings in sync with system color theme.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Website Theme Sync

Download Website Theme Sync-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Website Theme Sync Website Theme Sync
ID nofdgmcbecpbdgcmlpmcfkpgdefomjbn
Officiële URL https://chromewebstore.google.com/detail/website-theme-sync/nofdgmcbecpbdgcmlpmcfkpgdefomjbn
Beschrijving Keeps the web page color theme settings in sync with system color theme.
Bestandsgrootte 62.49 KB
Aantal Installaties 22
Huidige Versie 0.1
Laatst Bijgewerkt 2021-06-17
Publicatiedatum 2021-06-16
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar p.ryaposov
E-mail [email protected]
Betalingswijze free
Help Pagina-URL https://github.com/ryaposov/website-theme-sync
Ondersteunde Talen 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"
            ]
        }
    ]
}