Website Theme Sync
Keeps the web page color theme settings in sync with system color theme.
Cos'è Website Theme Sync?
Website Theme Sync è un'estensione di Chrome sviluppata da p.ryaposov, e la sua funzione principale è "Keeps the web page color theme settings in sync with system color theme.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Website Theme Sync
Scarica i file di estensione Website Theme Sync in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Website Theme Sync |
ID | nofdgmcbecpbdgcmlpmcfkpgdefomjbn |
URL Ufficiale | https://chromewebstore.google.com/detail/website-theme-sync/nofdgmcbecpbdgcmlpmcfkpgdefomjbn |
Descrizione | Keeps the web page color theme settings in sync with system color theme. |
Dimensione del File | 62.49 KB |
Conteggio Installazioni | 22 |
Versione Corrente | 0.1 |
Ultimo Aggiornamento | 2021-06-17 |
Data di Pubblicazione | 2021-06-16 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | p.ryaposov |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://github.com/ryaposov/website-theme-sync |
Lingue Supportate | 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" ] } ] } |