Brightness control

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

ما هو Brightness control؟

Brightness control هو إضافة Chrome تم تطويرها بواسطة https://namata.ru، والميزة الرئيسية لها هي "This extension allows you to change brightness of any website (where it is possible).".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Brightness control

قم بتنزيل ملفات الامتداد Brightness control بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Brightness control Brightness control
ID leocemaonffedgnjdhfoilhdledinnnh
عنوان URL الرسمي https://chromewebstore.google.com/detail/brightness-control/leocemaonffedgnjdhfoilhdledinnnh
الوصف This extension allows you to change brightness of any website (where it is possible).
حجم الملف 251 KB
عدد التثبيتات 726
النسخة الحالية 1.0
آخر تحديث 2021-09-28
تاريخ النشر 2021-09-27
تقييم 3.00/5 مجموع تقييمات 1
المطور https://namata.ru
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://namata.ru/brightnesscontrol/
اللغات المدعومة 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"
    ]
}