Dark Mode View

Allows you to enable all websites to be dark mode to ease eye strain.

ما هو Dark Mode View؟

Dark Mode View هو إضافة Chrome تم تطويرها بواسطة http://darkview.org، والميزة الرئيسية لها هي "Allows you to enable all websites to be dark mode to ease eye strain. ".

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

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Dark Mode View

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

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

                        Dark Mode View other wise known as Dark view for short. Is a dark mode extension created to give users the ability to set their favorite websites to be dark mode. Dark View also has an invert option that turns white text into yellow to assist with reading in the dark.                    

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

الاسم Dark Mode View Dark Mode View
ID ooliejnanmkmfamajdfidknhaklmiedd
عنوان URL الرسمي https://chrome.google.com/webstore/detail/dark-mode-view/ooliejnanmkmfamajdfidknhaklmiedd
الوصف Allows you to enable all websites to be dark mode to ease eye strain.
حجم الملف 20.61 KB
عدد التثبيتات 5,870
النسخة الحالية 1.0
آخر تحديث 2021-03-30
تاريخ النشر 2021-03-30
تقييم 4.50/5 مجموع تقييمات 2
المطور http://darkview.org
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://darkview.org/
عنوان صفحة المساعدة https://darkview.org/
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "Greg Henderson",
    "homepage_url": "https:\/\/darkview.org",
    "name": "Dark Mode View",
    "description": "Allows you to enable all websites to be dark mode to ease eye strain. ",
    "icons": {
        "128": "icon-128.png"
    },
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "autotoggle.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon-128.png",
        "default_title": "Dark Mode Viewer",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ]
}