Tab Brightness Control

Control Brightness Of Each Tab

What is Tab Brightness Control?

Tab Brightness Control is a Chrome extension developed by Lakshya Gupta, and its main feature is "Control Brightness Of Each Tab".

Extension Screenshots

screenshot
screenshot

Download Tab Brightness Control Extension CRX File

Download Tab Brightness Control extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Tab Brightness Control Tab Brightness Control
ID emdjkjjpeognjdnapljkfnihhgblekde
Official URL https://chromewebstore.google.com/detail/tab-brightness-control/emdjkjjpeognjdnapljkfnihhgblekde
Description Control Brightness Of Each Tab
File Size 329 KB
Installation Count 13,327
Current Version 1.3
Last Updated 2021-03-30
Publish Date 2020-07-04
Rating 3.20/5 Total 41 Ratings
Developer Lakshya Gupta
Email [email protected]
Payment Type free
Extension Website https://github.com/Lakshya2610/tab-brightness-control
Help Page URL https://github.com/Lakshya2610/tab-brightness-control
Privacy Policy Page URL https://github.com/Lakshya2610/tab-brightness-control/blob/master/PrivacyPolicy.txt
Supported Languages 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"
    }
}