Website Theme Sync
Keeps the web page color theme settings in sync with system color theme.
Co je Website Theme Sync?
Website Theme Sync je rozšíření Chrome vyvinuté p.ryaposov, a jeho hlavní funkcí je „Keeps the web page color theme settings in sync with system color theme.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Website Theme Sync
Stáhněte si soubory rozšíření Website Theme Sync ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Website Theme Sync |
ID | nofdgmcbecpbdgcmlpmcfkpgdefomjbn |
Oficiální URL | https://chromewebstore.google.com/detail/website-theme-sync/nofdgmcbecpbdgcmlpmcfkpgdefomjbn |
Popis | Keeps the web page color theme settings in sync with system color theme. |
Velikost souboru | 62.49 KB |
Počet instalací | 22 |
Aktuální Verze | 0.1 |
Poslední Aktualizace | 2021-06-17 |
Datum Vydání | 2021-06-16 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | p.ryaposov |
[email protected] | |
Typ Platby | free |
URL Stránky Nápovědy | https://github.com/ryaposov/website-theme-sync |
Podporované Jazyky | 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" ] } ] } |