Website Theme Sync

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

Vad är Website Theme Sync?

Website Theme Sync är en Chrome-tillägg utvecklad av p.ryaposov, och dess huvudfunktion är "Keeps the web page color theme settings in sync with system color theme.".

Tilläggsskärmbilder

screenshot

Ladda ner Website Theme Sync-förlängningens CRX-fil

Ladda ner Website Theme Sync-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Website Theme Sync Website Theme Sync
ID nofdgmcbecpbdgcmlpmcfkpgdefomjbn
Officiell webbadress https://chromewebstore.google.com/detail/website-theme-sync/nofdgmcbecpbdgcmlpmcfkpgdefomjbn
Beskrivning Keeps the web page color theme settings in sync with system color theme.
Filstorlek 62.49 KB
Antal Installationer 22
Aktuell Version 0.1
Senast Uppdaterad 2021-06-17
Publiceringsdatum 2021-06-16
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare p.ryaposov
E-post [email protected]
Betalningssätt free
Hjälpsida URL https://github.com/ryaposov/website-theme-sync
Stödda Språk 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"
            ]
        }
    ]
}