Lett Web Dimmer

Adjust brightness level on any website.

ما هو Lett Web Dimmer؟

Lett Web Dimmer هو إضافة Chrome تم تطويرها بواسطة https://lett.app، والميزة الرئيسية لها هي "Adjust brightness level on any website.".

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

screenshot

تحميل ملف CRX للإضافة Lett Web Dimmer

قم بتنزيل ملفات الامتداد Lett Web Dimmer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة سياسة الخصوصية 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"
        }
    }
}