Brightness control

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

What is Brightness control?

Brightness control is a Chrome extension developed by https://namata.ru, and its main feature is "This extension allows you to change brightness of any website (where it is possible).".

Extension Screenshots

screenshot

Download Brightness control Extension CRX File

Download Brightness control extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Brightness control Brightness control
ID leocemaonffedgnjdhfoilhdledinnnh
Official URL https://chromewebstore.google.com/detail/brightness-control/leocemaonffedgnjdhfoilhdledinnnh
Description This extension allows you to change brightness of any website (where it is possible).
File Size 251 KB
Installation Count 726
Current Version 1.0
Last Updated 2021-09-28
Publish Date 2021-09-27
Rating 3.00/5 Total 1 Ratings
Developer https://namata.ru
Email [email protected]
Payment Type free
Extension Website https://namata.ru/brightnesscontrol/
Supported Languages 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"
    ]
}