Brightness control

This extension allows you to change brightness of any website (where it is possible).

Qu'est-ce que Brightness control ?

Brightness control est une extension Chrome développée par https://namata.ru, et sa fonction principale est "This extension allows you to change brightness of any website (where it is possible).".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Brightness control

Téléchargez les fichiers d'extension 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

                        This simple extension allow you to change brightness of any website (where it is possible). 
Brightness control just protects your eyes from annoying bright colors.                    

Informations de Base sur l'Extension

Nom Brightness control Brightness control
ID leocemaonffedgnjdhfoilhdledinnnh
URL Officiel https://chromewebstore.google.com/detail/brightness-control/leocemaonffedgnjdhfoilhdledinnnh
Description This extension allows you to change brightness of any website (where it is possible).
Taille du Fichier 251 KB
Nombre d'Installations 726
Version Actuelle 1.0
Dernière Mise à Jour 2021-09-28
Date de Publication 2021-09-27
Évaluation 3.00/5 Total 1 Évaluations
Développeur https://namata.ru
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://namata.ru/brightnesscontrol/
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Brightness control",
    "description": "This extension allows you to change brightness of any website (where it is possible).",
    "version": "1.0",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "activeTab"
    ]
}