Lett Web Dimmer

Adjust brightness level on any website.

Lett Web Dimmer란 무엇입니까?

Lett Web Dimmer은(는) https://lett.app에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adjust brightness level on any website."입니다.

확장 프로그램 스크린샷

screenshot

Lett Web Dimmer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Lett Web Dimmer Lett Web Dimmer
ID bccgllhmbjhkaapbjfgbmeggjcpdhnbp
공식 URL https://chromewebstore.google.com/detail/lett-web-dimmer/bccgllhmbjhkaapbjfgbmeggjcpdhnbp
설명 Adjust brightness level on any website.
파일 크기 17.67 KB
설치 횟수 30
현재 버전 3.15
최근 업데이트 2024-01-11
출시 날짜 2021-05-08
평점 5.00/5 총 1 개의 평점
개발자 https://lett.app
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://lett.app/web-dimmer
개인정보 보호 정책 페이지 URL https://lett.app/privacy
지원되는 언어 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"
        }
    }
}