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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}