Sites Dimmer - sharp brightness reduction

Extension automatically dims bright sites (which are not in a dark mode) to a desired level!

Τι είναι το Sites Dimmer - sharp brightness reduction;

Το Sites Dimmer - sharp brightness reduction είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://ebnull.org, και η κύρια λειτουργία του είναι "Extension automatically dims bright sites (which are not in a dark mode) to a desired level!".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Sites Dimmer - sharp brightness reduction

Λήψη αρχείων επέκτασης Sites Dimmer - sharp brightness reduction σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        Sites Dimmer automatically dims light-themed sites.

New:
- You can override the brightness for each site separately.
- Color inversion function available if you really want to darken.

Key features:
- Automatically determines theme types and turns on only on sites that have not bothered to create a theme for the dark mode.
- When reducing the brightness does not modify the color, everything looks as designed by the site.
- You control the brightness dimming level.
- If necessary, you can enable or disable dimming for each individual site.
- The extension icon indicates whether the current site brightness is dimmed.                    

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

Όνομα Sites Dimmer - sharp brightness reduction Sites Dimmer - sharp brightness reduction
ID agnbniclhlfikoejdpdhkbaabginadlf
Επίσημο URL https://chromewebstore.google.com/detail/sites-dimmer-sharp-bright/agnbniclhlfikoejdpdhkbaabginadlf
Περιγραφή Extension automatically dims bright sites (which are not in a dark mode) to a desired level!
Μέγεθος Αρχείου 69.89 KB
Αριθμός Εγκαταστάσεων 12,002
Τρέχουσα Έκδοση 2.1.1
Τελευταία Ενημέρωση 2021-02-14
Ημερομηνία Δημοσίευσης 2019-11-27
Αξιολόγηση 4.39/5 Συνολικά 71 Αξιολογήσεις
Προγραμματιστής https://ebnull.org
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://ebnull.org/privacy
Υποστηριζόμενες Γλώσσες en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "minimum_chrome_version": "70",
    "default_locale": "en",
    "author": "EbNull",
    "name": "__MSG_extension_name__",
    "short_name": "__MSG_extension_title__",
    "description": "__MSG_extension_descr__",
    "version": "2.1.1",
    "permissions": [
        "alarms",
        "storage",
        ""
    ],
    "icons": {
        "16": "icon\/appicon_16.png",
        "48": "icon\/appicon_48.png",
        "128": "icon\/appicon_128.png",
        "256": "icon\/appicon_256.png"
    },
    "browser_action": {
        "default_title": "__MSG_extension_title__",
        "default_icon": {
            "19": "icon\/actions\/action_19_active.png",
            "38": "icon\/actions\/action_38_active.png"
        },
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "scripts": [
            "js\/deps\/ext-storage-manager.min.js",
            "js\/deps\/ext-active-tab-state.min.js",
            "js\/deps\/ext-auto-inject.min.js",
            "js\/deps\/ebnull-notifier.min.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "run_at": "document_start",
            "js": [
                "js\/deps\/ext-storage-manager.min.js",
                "js\/deps\/ext-active-tab-state.min.js",
                "js\/deps\/ext-auto-inject.min.js",
                "js\/content.js"
            ],
            "css": [
                "css\/content.css"
            ]
        }
    ]
}