Website Theme Sync
Keeps the web page color theme settings in sync with system color theme.
Qu'est-ce que Website Theme Sync ?
Website Theme Sync est une extension Chrome développée par p.ryaposov, et sa fonction principale est "Keeps the web page color theme settings in sync with system color theme.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Website Theme Sync
Téléchargez les fichiers d'extension Website Theme Sync au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Website Theme Sync |
ID | nofdgmcbecpbdgcmlpmcfkpgdefomjbn |
URL Officiel | https://chromewebstore.google.com/detail/website-theme-sync/nofdgmcbecpbdgcmlpmcfkpgdefomjbn |
Description | Keeps the web page color theme settings in sync with system color theme. |
Taille du Fichier | 62.49 KB |
Nombre d'Installations | 22 |
Version Actuelle | 0.1 |
Dernière Mise à Jour | 2021-06-17 |
Date de Publication | 2021-06-16 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | p.ryaposov |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | https://github.com/ryaposov/website-theme-sync |
Langues Prises en Charge | 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" ] } ] } |