Night Mode

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

Hvad er Night Mode?

Night Mode er en Chrome-udvidelse udviklet af SmartLink, og dens hovedfunktion er "Enjoy the web in the new night colors and protect your eyes".

Udvidelsesskærmbilleder

screenshot

Download Night Mode-udvidelses-CRX-fil

Download Night Mode-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Night Mode Night Mode
ID bkiiljdcpccihhoigelmohcfkehdnjej
Officiel URL https://chromewebstore.google.com/detail/night-mode/bkiiljdcpccihhoigelmohcfkehdnjej
Beskrivelse Enjoy the web in the new night colors and protect your eyes
Filstørrelse 42.85 KB
Antal Installationer 152,483
Nuværende Version 2.0.0
Senest Opdateret 2022-06-07
Udgivelsesdato 2020-05-16
Bedømmelse 3.84/5 Samlet 129 Bedømmelser
Udvikler SmartLink
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
        }
    ]
}