Brightness control

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

Apa itu Brightness control?

Brightness control adalah ekstensi Chrome yang dikembangkan oleh https://namata.ru, dan fitur utamanya adalah "This extension allows you to change brightness of any website (where it is possible).".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Brightness control

Unduh file ekstensi Brightness control dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Brightness control Brightness control
ID leocemaonffedgnjdhfoilhdledinnnh
URL Resmi https://chromewebstore.google.com/detail/brightness-control/leocemaonffedgnjdhfoilhdledinnnh
Deskripsi This extension allows you to change brightness of any website (where it is possible).
Ukuran File 251 KB
Jumlah Instalasi 726
Versi Saat Ini 1.0
Terakhir Diperbarui 2021-09-28
Tanggal Publikasi 2021-09-27
Penilaian 3.00/5 Total 1 Penilaian
Pengembang https://namata.ru
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://namata.ru/brightnesscontrol/
Bahasa yang Didukung 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"
    ]
}