Dark Mode 2.0

Allows you to turn on dark mode for any website & enables night shift that changes the tint to help avoid strain on your eyes!

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

Το Dark Mode 2.0 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Meet, και η κύρια λειτουργία του είναι "Allows you to turn on dark mode for any website & enables night shift that changes the tint to help avoid strain on your eyes!".

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

screenshot

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

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

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

                        ⬇️Easy to set up ⬇️:
1. Install and add the extension to Chrome.
2. Turn the toggle of the extension to regulate the dark mode for your browser.

✨Features ✨

1. Ability to customize theme 🎨from over 50 available options.
2. White-list feature enables you to exclude a desired domain from dark mode.
3. Context-menu item in mouse right-click to exclude desired websites.

This extension serves you a global dark theme for the web in one click.                    

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

Όνομα Dark Mode 2.0 Dark Mode 2.0
ID falojlkngkajkbnfoolnagafeeilogjo
Επίσημο URL https://chromewebstore.google.com/detail/dark-mode-20/falojlkngkajkbnfoolnagafeeilogjo
Περιγραφή Allows you to turn on dark mode for any website & enables night shift that changes the tint to help avoid strain on your eyes!
Μέγεθος Αρχείου 225 KB
Αριθμός Εγκαταστάσεων 448
Τρέχουσα Έκδοση 0.0.1
Τελευταία Ενημέρωση 2022-10-04
Ημερομηνία Δημοσίευσης 2022-10-03
Αξιολόγηση 4.75/5 Συνολικά 16 Αξιολογήσεις
Προγραμματιστής Meet
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.0.1",
    "manifest_version": 3,
    "name": "Dark Mode 2.0",
    "minimum_chrome_version": "90",
    "icons": {
        "128": "icons\/icon.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": ".\/js\/background.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "run_at": "document_start",
            "css": [
                ".\/css\/inject.css"
            ],
            "js": [
                ".\/js\/content_script.js"
            ],
            "exclude_globs": [
                "*\/chrome\/newtab*"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "webNavigation"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "css\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "description": "Allows you to turn on dark mode for any website & enables night shift that changes the tint to help avoid strain on your eyes!"
}