Brightness control

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

Brightness control là gì?

Brightness control là một tiện ích mở rộng Chrome được phát triển bởi https://namata.ru, và tính năng chính của nó là "This extension allows you to change brightness of any website (where it is possible).".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Brightness control

Tải xuống các tệp mở rộng Brightness control dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Brightness control Brightness control
ID leocemaonffedgnjdhfoilhdledinnnh
URL Chính Thức https://chromewebstore.google.com/detail/brightness-control/leocemaonffedgnjdhfoilhdledinnnh
Mô tả This extension allows you to change brightness of any website (where it is possible).
Kích Thước Tệp 251 KB
Số Lần Cài Đặt 726
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-09-28
Ngày Phát Hành 2021-09-27
Đánh Giá 3.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://namata.ru
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://namata.ru/brightnesscontrol/
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}