Night Owl - Smart Dark Mode

Instantly transform websites into a comfortable, eye-friendly dark mode experience.

ما هو Night Owl - Smart Dark Mode؟

Night Owl - Smart Dark Mode هو إضافة Chrome تم تطويرها بواسطة Music For Trees، والميزة الرئيسية لها هي "Instantly transform websites into a comfortable, eye-friendly dark mode experience.".

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

screenshot

تحميل ملف CRX للإضافة Night Owl - Smart Dark Mode

قم بتنزيل ملفات الامتداد Night Owl - Smart Dark Mode بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Dark mode for any website!

Many websites don't have a dark mode option, so we made Night Owl. Click the owl icon to turn on dark mode for any site, and the extension will remember your preferences. Enjoy a comfortable browsing experience with your favorite sites in dark mode!                    

معلومات أساسية عن التمديد

الاسم Night Owl - Smart Dark Mode Night Owl - Smart Dark Mode
ID ifflcmkgdhiopibdbljombcjfeeldhnp
عنوان URL الرسمي https://chromewebstore.google.com/detail/night-owl-smart-dark-mode/ifflcmkgdhiopibdbljombcjfeeldhnp
الوصف Instantly transform websites into a comfortable, eye-friendly dark mode experience.
حجم الملف 6.55 KB
عدد التثبيتات 55
النسخة الحالية 1.0
آخر تحديث 2023-04-13
تاريخ النشر 2023-04-13
تقييم 5.00/5 مجموع تقييمات 2
المطور Music For Trees
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة سياسة الخصوصية https://policies.google.com/privacy
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Night Owl - Smart Dark Mode",
    "version": "1.0",
    "description": "Instantly transform websites into a comfortable, eye-friendly dark mode experience.",
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}