Tab Brightness Control

Control Brightness Of Each Tab

Cos'è Tab Brightness Control?

Tab Brightness Control è un'estensione di Chrome sviluppata da Lakshya Gupta, e la sua funzione principale è "Control Brightness Of Each Tab".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Tab Brightness Control

Scarica i file di estensione Tab Brightness Control in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Tab Brightness Control Tab Brightness Control
ID emdjkjjpeognjdnapljkfnihhgblekde
URL Ufficiale https://chromewebstore.google.com/detail/tab-brightness-control/emdjkjjpeognjdnapljkfnihhgblekde
Descrizione Control Brightness Of Each Tab
Dimensione del File 329 KB
Conteggio Installazioni 13,327
Versione Corrente 1.3
Ultimo Aggiornamento 2021-03-30
Data di Pubblicazione 2020-07-04
Valutazione 3.20/5 Totale 41 Valutazioni
Sviluppatore Lakshya Gupta
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Lakshya2610/tab-brightness-control
URL della Pagina di Aiuto https://github.com/Lakshya2610/tab-brightness-control
URL della Pagina della Politica sulla Privacy https://github.com/Lakshya2610/tab-brightness-control/blob/master/PrivacyPolicy.txt
Lingue Supportate 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"
    }
}