Dark Mode Sync
Sync dark mode with websites
Qu'est-ce que Dark Mode Sync ?
Dark Mode Sync est une extension Chrome développée par Eric Chen, et sa fonction principale est "Sync dark mode with websites".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Dark Mode Sync
Téléchargez les fichiers d'extension Dark Mode 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
Make websites that support dark mode match your system's dark mode. Supported websites: * Youtube * Reddit * Stack Overflow * Twitter * Twitch
Informations de Base sur l'Extension
Nom | |
ID | hpioldggkhofifecekhgeoepibppmedn |
URL Officiel | https://chrome.google.com/webstore/detail/hpioldggkhofifecekhgeoepibppmedn |
Description | Sync dark mode with websites |
Taille du Fichier | 19.13 KB |
Nombre d'Installations | 11 |
Version Actuelle | 0.4 |
Dernière Mise à Jour | 2020-10-01 |
Date de Publication | 2020-05-06 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Eric Chen |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://docs.google.com/document/d/1jgmA2stM6D2Z13xgw_KcJH8si77YOcmG0lK4Jx-BvrI/edit |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Dark Mode Sync", "version": "0.4", "description": "Sync dark mode with websites", "browser_action": { "default_icon": { "32": "logo32.png", "128": "logo128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "youtube.js" ] }, { "matches": [ "https:\/\/*.reddit.com\/*" ], "js": [ "reddit.js" ] }, { "matches": [ "https:\/\/*.stackoverflow.com\/*" ], "js": [ "stackoverflow.js" ] }, { "matches": [ "https:\/\/*.twitter.com\/*" ], "js": [ "twitter.js" ] }, { "matches": [ "https:\/\/*.twitch.tv\/*" ], "js": [ "twitch.js" ] } ], "manifest_version": 2 } |