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
电子邮箱 [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"
    }
}