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
官方網址 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"
    ]
}