Brightness control

This extension allows you to change brightness of any website (where it is possible).

Brightness control क्या है?

Brightness control https://namata.ru द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows you to change brightness of any website (where it is possible)."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Brightness control एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This simple extension allow you to change brightness of any website (where it is possible). 
Brightness control just protects your eyes from annoying bright colors.                    

एक्सटेंशन की मूल जानकारी

नाम Brightness control Brightness control
ID leocemaonffedgnjdhfoilhdledinnnh
आधिकारिक URL https://chromewebstore.google.com/detail/brightness-control/leocemaonffedgnjdhfoilhdledinnnh
विवरण This extension allows you to change brightness of any website (where it is possible).
फ़ाइल का आकार 251 KB
स्थापना संख्या 726
वर्तमान संस्करण 1.0
अंतिम अपडेट 2021-09-28
प्रकाशन तिथि 2021-09-27
रेटिंग 3.00/5 कुल 1 रेटिंग्स
डेवलपर https://namata.ru
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://namata.ru/brightnesscontrol/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Brightness control",
    "description": "This extension allows you to change brightness of any website (where it is possible).",
    "version": "1.0",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab"
    ]
}