Lett Web Dimmer

Adjust brightness level on any website.

Lett Web Dimmer là gì?

Lett Web Dimmer là một tiện ích mở rộng Chrome được phát triển bởi https://lett.app, và tính năng chính của nó là "Adjust brightness level on any website.".

Ả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 Lett Web Dimmer

Tải xuống các tệp mở rộng Lett Web Dimmer 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 extension is especially helpful for websites that don't support dark mode, it allows you to adjust the brightness level down to the level that suits you best.

The extension is fully private and works in several modes allowing you to:
   - Enable it on specific websites only.
   - Enable it on all websites and disable it on some.
   - Enable it on all websites and use custom settings on some.

If you wish to enable it on local files such as PDF files, go to:
     Extensions > Details > Allow access to file URLs                    

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

Tên Lett Web Dimmer Lett Web Dimmer
ID bccgllhmbjhkaapbjfgbmeggjcpdhnbp
URL Chính Thức https://chromewebstore.google.com/detail/lett-web-dimmer/bccgllhmbjhkaapbjfgbmeggjcpdhnbp
Mô tả Adjust brightness level on any website.
Kích Thước Tệp 17.67 KB
Số Lần Cài Đặt 30
Phiên Bản Hiện Tại 3.15
Cập Nhật Lần Cuối 2024-01-11
Ngày Phát Hành 2021-05-08
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://lett.app
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://lett.app/web-dimmer
URL Trang Chính Sách Bảo Mật https://lett.app/privacy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "minimum_chrome_version": "95",
    "version": "3.15",
    "name": "Lett Web Dimmer",
    "description": "Adjust brightness level on any website.",
    "icons": {
        "32": "\/assets\/icon32.png",
        "128": "\/assets\/icon.png"
    },
    "offline_enabled": true,
    "permissions": [
        "storage",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                ""
            ],
            "js": [
                "\/js\/content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "\/js\/worker.js"
    },
    "action": {
        "default_popup": "\/html\/popup.html"
    },
    "commands": {
        "increase": {
            "suggested_key": {
                "default": "Alt+W"
            },
            "description": "Go Darker"
        },
        "decrease": {
            "suggested_key": {
                "default": "Alt+Q"
            },
            "description": "Go Lighter"
        }
    }
}