Tab Brightness Control

Control Brightness Of Each Tab

Qu'est-ce que Tab Brightness Control ?

Tab Brightness Control est une extension Chrome développée par Lakshya Gupta, et sa fonction principale est "Control Brightness Of Each Tab".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Tab Brightness Control

Téléchargez les fichiers d'extension Tab Brightness Control au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Tab Brightness Control Tab Brightness Control
ID emdjkjjpeognjdnapljkfnihhgblekde
URL Officiel https://chromewebstore.google.com/detail/tab-brightness-control/emdjkjjpeognjdnapljkfnihhgblekde
Description Control Brightness Of Each Tab
Taille du Fichier 329 KB
Nombre d'Installations 13,327
Version Actuelle 1.3
Dernière Mise à Jour 2021-03-30
Date de Publication 2020-07-04
Évaluation 3.20/5 Total 41 Évaluations
Développeur Lakshya Gupta
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Lakshya2610/tab-brightness-control
URL de la Page d'Aide https://github.com/Lakshya2610/tab-brightness-control
URL de la Page de Politique de Confidentialité https://github.com/Lakshya2610/tab-brightness-control/blob/master/PrivacyPolicy.txt
Langues Prises en Charge 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"
    }
}