Night Mode
Enjoy the web in the new night colors and protect your eyes
Qu'est-ce que Night Mode ?
Night Mode est une extension Chrome développée par SmartLink, et sa fonction principale est "Enjoy the web in the new night colors and protect your eyes".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Night Mode
Téléchargez les fichiers d'extension Night Mode 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
Night Mode Version 2.0.0 - Fixed style issues after Instagram latest update. - Adopted native DarkTheme from the Instagram app. Enjoy ! This extension was developed Independently by SmartLink and not affiliated with Instagram Inc.
Informations de Base sur l'Extension
Nom | Night Mode |
ID | bkiiljdcpccihhoigelmohcfkehdnjej |
URL Officiel | https://chromewebstore.google.com/detail/night-mode/bkiiljdcpccihhoigelmohcfkehdnjej |
Description | Enjoy the web in the new night colors and protect your eyes |
Taille du Fichier | 42.85 KB |
Nombre d'Installations | 152,483 |
Version Actuelle | 2.0.0 |
Dernière Mise à Jour | 2022-06-07 |
Date de Publication | 2020-05-16 |
Évaluation | 3.84/5 Total 129 Évaluations |
Développeur | SmartLink |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Night Mode", "description": "Enjoy the web in the new night colors and protect your eyes", "version": "2.0.0", "author": "SmartLink", "browser_action": { "default_title": "Have a good day" }, "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'", "permissions": [ "activeTab", "storage" ], "background": { "page": "background.html", "persistent": true }, "icons": { "16": "imgs\/icon16.png", "48": "imgs\/icon48.png", "128": "imgs\/icon128.png" }, "web_accessible_resources": [ "nightmode.css" ], "content_scripts": [ { "matches": [ "https:\/\/www.instagram.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ] } |