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
Eメール [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"
    ]
}