Night Mode
Enjoy the web in the new night colors and protect your eyes
Wat is Night Mode?
Night Mode is een Chrome-extensie ontwikkeld door SmartLink, en de belangrijkste functie is "Enjoy the web in the new night colors and protect your eyes".
Extensie Screenshots
Download het CRX-bestand van de extensie Night Mode
Download Night Mode-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Night Mode |
ID | bkiiljdcpccihhoigelmohcfkehdnjej |
Officiële URL | https://chromewebstore.google.com/detail/night-mode/bkiiljdcpccihhoigelmohcfkehdnjej |
Beschrijving | Enjoy the web in the new night colors and protect your eyes |
Bestandsgrootte | 42.85 KB |
Aantal Installaties | 152,483 |
Huidige Versie | 2.0.0 |
Laatst Bijgewerkt | 2022-06-07 |
Publicatiedatum | 2020-05-16 |
Beoordeling | 3.84/5 Totaal 129 Beoordelingen |
Ontwikkelaar | SmartLink |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } ] } |