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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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/
URL หน้าช่วยเหลือ 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"
    ]
}