Night Mode

Enjoy the web in the new night colors and protect your eyes

Cos'è Night Mode?

Night Mode è un'estensione di Chrome sviluppata da SmartLink, e la sua funzione principale è "Enjoy the web in the new night colors and protect your eyes".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Night Mode

Scarica i file di estensione Night Mode 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Night Mode Night Mode
ID bkiiljdcpccihhoigelmohcfkehdnjej
URL Ufficiale https://chromewebstore.google.com/detail/night-mode/bkiiljdcpccihhoigelmohcfkehdnjej
Descrizione Enjoy the web in the new night colors and protect your eyes
Dimensione del File 42.85 KB
Conteggio Installazioni 152,483
Versione Corrente 2.0.0
Ultimo Aggiornamento 2022-06-07
Data di Pubblicazione 2020-05-16
Valutazione 3.84/5 Totale 129 Valutazioni
Sviluppatore SmartLink
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}