Brightness control

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

什么是Brightness control?

Brightness control是由https://namata.ru开发的Chrome扩展程序,该扩展的主要功能是“This extension allows you to change brightness of any website (where it is possible).”。

扩展截图

screenshot

下载Brightness control扩展crx文件

下载Brightness control扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    ]
}