Dark Mode

A global dark theme for the web.

Τι είναι το Dark Mode;

Το Dark Mode είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Grephy, και η κύρια λειτουργία του είναι "A global dark theme for the web.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Dark Mode

Λήψη αρχείων επέκτασης Dark Mode σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Dark Mode is an extension that helps you quickly turn the screen (browser) to dark at night time.

Toolbar button serves as an ON|OFF switch which enables you to easily and quickly turn the extension ON or OFF. If you do not like the current dark theme, please visit the options page and choose a different theme from over 50 available options.

There is also a white-list feature which enables you to exclude a desired domain from dark mode. Simply add a domain(s) to the designated area (comma separated) in the options page and the websites will be excluded from night mode. Alternatively, you can use the context-menu item in mouse right-click to exclude desired websites.

To report bugs, please fill out the bug report form on the add-on's homepage (https://mybrowseraddon.com/dark-mode.html).                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Dark Mode Dark Mode
ID dmghijelimhndkbmpgbldicpogfkceaj
Επίσημο URL https://chromewebstore.google.com/detail/dark-mode/dmghijelimhndkbmpgbldicpogfkceaj
Περιγραφή A global dark theme for the web.
Μέγεθος Αρχείου 280 KB
Αριθμός Εγκαταστάσεων 2,168,424
Τρέχουσα Έκδοση 0.5.1
Τελευταία Ενημέρωση 2023-10-29
Ημερομηνία Δημοσίευσης 2020-06-16
Αξιολόγηση 3.58/5 Συνολικά 1896 Αξιολογήσεις
Προγραμματιστής Grephy
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://mybrowseraddon.com/dark-mode.html
Διεύθυνση URL της Σελίδας Βοήθειας https://mybrowseraddon.com/dark-mode.html
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.5.1",
    "name": "Dark Mode",
    "manifest_version": 3,
    "offline_enabled": true,
    "host_permissions": [
        ""
    ],
    "optional_permissions": [
        "alarms"
    ],
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "description": "A global dark theme for the web.",
    "homepage_url": "https:\/\/mybrowseraddon.com\/dark-mode.html",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "data\/options\/options.html"
    },
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "data\/content_script\/custom\/*",
                "data\/content_script\/general\/*",
                "data\/content_script\/page_context\/inject.js"
            ]
        }
    ],
    "action": {
        "default_title": "Dark Mode",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "run_at": "document_start",
            "exclude_globs": [
                "*\/chrome\/newtab*"
            ],
            "css": [
                "data\/content_script\/inject.css"
            ],
            "js": [
                "data\/rules\/rules.js",
                "data\/content_script\/inject.js",
                "data\/content_script\/vendor\/tinycolor.js",
                "data\/content_script\/resources\/native.js"
            ]
        }
    ],
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}