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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}