Tab Brightness Control

Control Brightness Of Each Tab

Tab Brightness Controlとは何ですか?

Tab Brightness ControlはLakshya Guptaによって開発されたChromeの拡張機能で、その主な機能は「Control Brightness Of Each Tab」です。

拡張機能のスクリーンショット

screenshot
screenshot

Tab Brightness Control拡張機能のCRXファイルをダウンロード

Tab Brightness Control拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        The extension allows you to control brightness of chrome tabs. You can change brightness of each tab individually.

Update Version 1.1:
   - Added option to persist brightness across pages

Update Version 1.2:
   - Made brightness persistence on by default

Update Version 1.3:
   - Extension now works on local files that are opened in the browser                    

拡張機能の基本情報

名前 Tab Brightness Control Tab Brightness Control
ID emdjkjjpeognjdnapljkfnihhgblekde
公式URL https://chromewebstore.google.com/detail/tab-brightness-control/emdjkjjpeognjdnapljkfnihhgblekde
説明 Control Brightness Of Each Tab
ファイルサイズ 329 KB
インストール数 13,327
現在のバージョン 1.3
最終更新日 2021-03-30
公開日 2020-07-04
評価 3.20/5 合計 41 レビュー
開発者 Lakshya Gupta
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/Lakshya2610/tab-brightness-control
ヘルプページのURL https://github.com/Lakshya2610/tab-brightness-control
プライバシーポリシーページのURL https://github.com/Lakshya2610/tab-brightness-control/blob/master/PrivacyPolicy.txt
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Brightness Control",
    "author": "Lakshya Gupta",
    "version": "1.3",
    "description": "Control Brightness Of Each Tab",
    "permissions": [
        "activeTab"
    ],
    "browser_action": {
        "default_popup": "index.html"
    },
    "content_security_policy": "script-src 'self' 'sha256-B2Jcp\/mUaSiw5K6bOR3BiG6HKAk4B4faBAZl4JhLwXc='; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "persistent": true
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "128": "icon128.png",
        "256": "icon256.png",
        "512": "icon512.png"
    }
}