Dark Mode 2.0

Allows you to turn on dark mode for any website & enables night shift that changes the tint to help avoid strain on your eyes!

Dark Mode 2.0คืออะไร?

Dark Mode 2.0 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Meet และคุณลักษณะหลักของมันคือ "Allows you to turn on dark mode for any website & enables night shift that changes the tint to help avoid strain on your eyes!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Dark Mode 2.0

ดาวน์โหลดไฟล์ส่วนขยาย Dark Mode 2.0 ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        ⬇️Easy to set up ⬇️:
1. Install and add the extension to Chrome.
2. Turn the toggle of the extension to regulate the dark mode for your browser.

✨Features ✨

1. Ability to customize theme 🎨from over 50 available options.
2. White-list feature enables you to exclude a desired domain from dark mode.
3. Context-menu item in mouse right-click to exclude desired websites.

This extension serves you a global dark theme for the web in one click.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Dark Mode 2.0 Dark Mode 2.0
ID falojlkngkajkbnfoolnagafeeilogjo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/dark-mode-20/falojlkngkajkbnfoolnagafeeilogjo
คำอธิบาย Allows you to turn on dark mode for any website & enables night shift that changes the tint to help avoid strain on your eyes!
ขนาดไฟล์ 225 KB
จำนวนการติดตั้ง 448
เวอร์ชันปัจจุบัน 0.0.1
อัปเดตครั้งล่าสุด 2022-10-04
วันที่เผยแพร่ 2022-10-03
คะแนน 4.75/5 รวมทั้งหมด 16 คะแนน
ผู้พัฒนา Meet
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.0.1",
    "manifest_version": 3,
    "name": "Dark Mode 2.0",
    "minimum_chrome_version": "90",
    "icons": {
        "128": "icons\/icon.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": ".\/js\/background.js"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "match_about_blank": true,
            "run_at": "document_start",
            "css": [
                ".\/css\/inject.css"
            ],
            "js": [
                ".\/js\/content_script.js"
            ],
            "exclude_globs": [
                "*\/chrome\/newtab*"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "webNavigation"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "css\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "description": "Allows you to turn on dark mode for any website & enables night shift that changes the tint to help avoid strain on your eyes!"
}