Daydream Night Mode

Get rid of the sun-like screen and have a sweet Daydream...

Τι είναι το Daydream Night Mode;

Το Daydream Night Mode είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον zankyostudio, και η κύρια λειτουργία του είναι "Get rid of the sun-like screen and have a sweet Daydream...".

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

screenshot
screenshot
screenshot

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

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

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

                        Get rid of the sun-like screen and take your sweet dream.
Provide dark mode access to all websites with customizable contrast. You can also exclude any website from the extension if the website already provides dark mode.                    

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

Όνομα Daydream Night Mode Daydream Night Mode
ID kbbmooglpoifkklpckgabiahlicnhnmo
Επίσημο URL https://chromewebstore.google.com/detail/daydream-night-mode/kbbmooglpoifkklpckgabiahlicnhnmo
Περιγραφή Get rid of the sun-like screen and have a sweet Daydream...
Μέγεθος Αρχείου 10.58 KB
Αριθμός Εγκαταστάσεων 1,004
Τρέχουσα Έκδοση 0.1.6
Τελευταία Ενημέρωση 2020-11-20
Ημερομηνία Δημοσίευσης 2019-06-01
Αξιολόγηση 4.18/5 Συνολικά 11 Αξιολογήσεις
Προγραμματιστής zankyostudio
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Daydream Night Mode",
    "version": "0.1.6",
    "description": "Get rid of the sun-like screen and have a sweet Daydream...",
    "permissions": [
        "activeTab",
        "tabs",
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "ftp:\/\/*\/*",
        "file:\/\/*\/*",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/*\/*"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "DaydreamIcon.png"
    }
}