Brightness control

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

Wat is Brightness control?

Brightness control is een Chrome-extensie ontwikkeld door https://namata.ru, en de belangrijkste functie is "This extension allows you to change brightness of any website (where it is possible).".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Brightness control

Download Brightness control-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Brightness control Brightness control
ID leocemaonffedgnjdhfoilhdledinnnh
Officiële URL https://chromewebstore.google.com/detail/brightness-control/leocemaonffedgnjdhfoilhdledinnnh
Beschrijving This extension allows you to change brightness of any website (where it is possible).
Bestandsgrootte 251 KB
Aantal Installaties 726
Huidige Versie 1.0
Laatst Bijgewerkt 2021-09-28
Publicatiedatum 2021-09-27
Beoordeling 3.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://namata.ru
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://namata.ru/brightnesscontrol/
Ondersteunde Talen 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"
    ]
}