Dusk

Dusk - protect your eyes with dark mode for popular sites

Was ist Dusk?

Dusk ist eine Chrome-Erweiterung, die von Valentin Gorenc entwickelt wurde, und ihr Hauptmerkmal ist "Dusk - protect your eyes with dark mode for popular sites".

Erweiterungsscreenshots

screenshot
screenshot

Dusk-Erweiterungs-CRX-Datei herunterladen

Laden Sie Dusk-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Dusk applies a dark theme to your browsing experience.

Features:
- Works on the most popular sites
- Dark search: you search on dark-themed search engine
- Blacklist: you can add a site to the blacklist if you experience any issues                    

Grundlegende Informationen zur Erweiterung

Name Dusk Dusk
ID fbgnkgdmcmhiaakjbilpjnpenhinkgon
Offizielle URL https://chrome.google.com/webstore/detail/dusk/fbgnkgdmcmhiaakjbilpjnpenhinkgon
Beschreibung Dusk - protect your eyes with dark mode for popular sites
Dateigröße 794 KB
Installationsanzahl 700,000
Aktuelle Version 2.33
Letztes Update 2021-08-04
Veröffentlichungsdatum 2021-03-24
Bewertung 2.00/5 Insgesamt 12 Bewertungen
Entwickler Valentin Gorenc
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://www.notion.so/Privacy-policy-Dusk-711c91d315954dcc8c9804360b2b0430
Unterstützte Sprachen id,ms,de,en,en-GB,en-US,fil,fr,nl,no,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,mr,hi,bn,gu,ta,te,ml,th,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon-128.png"
    },
    "content_scripts": [
        {
            "js": [
                "content1.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        },
        {
            "all_frames": true,
            "exclude_globs": [
                "*\/chrome\/newtab*"
            ],
            "js": [
                "content2.js"
            ],
            "match_about_blank": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "default_locale": "en",
    "description": "__MSG_extDesc__",
    "icons": {
        "128": "icon-128.png",
        "48": "icon-48.png",
        "16": "icon-16.png"
    },
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "permissions": [
        "storage",
        "",
        "contextMenus",
        "tabs"
    ],
    "version": "2.33",
    "web_accessible_resources": [
        "\/css\/*.css"
    ]
}