Custom Dark Mode

Customize your dark mode for the web!

Custom Dark Modeคืออะไร?

Custom Dark Mode เป็นส่วนขยายของ Chrome ที่พัฒนาโดย loora และคุณลักษณะหลักของมันคือ "Customize your dark mode for the web!"

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

screenshot

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

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

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

                        Custom Dark Mode is a browser add-on that help you design your own dark style for the web.

Simply open toolbar popup UI and then adjust the color settings. There are a variety of options available to choose from. From document body's "background-color" to "font-color", "header-color" and etc. Moreover, you can adjust the opacity for all HTML elements.

All the settings in toolbar popup are auto saved to the memory. There is also a (+/-) button with you can use to whitelist desired domain(s) from dark mode. Please note that, at the current version of the add-on, there is no option to see the whitelist table. You can only add or remove websites from toolbar popup UI. In order to turn the add-on ON/OFF, you can use the big "torch" button at the top center in popup.

If you found a bug to report, or have a feature request, please fill the bug report form in the add-on's homepage (https://mybrowseraddon.com/custom-dark-mode.html).                    

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

ชื่อ Custom Dark Mode Custom Dark Mode
ID bocmmeghmdkmbdlcagdfpnedcbekjpcn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/custom-dark-mode/bocmmeghmdkmbdlcagdfpnedcbekjpcn
คำอธิบาย Customize your dark mode for the web!
ขนาดไฟล์ 85.97 KB
จำนวนการติดตั้ง 1,674
เวอร์ชันปัจจุบัน 0.1.4
อัปเดตครั้งล่าสุด 2023-07-04
วันที่เผยแพร่ 2018-12-04
คะแนน 3.64/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา loora
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://mybrowseraddon.com/custom-dark-mode.html
URL หน้าช่วยเหลือ https://mybrowseraddon.com/custom-dark-mode.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.4",
    "manifest_version": 3,
    "offline_enabled": true,
    "name": "Custom Dark Mode",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "description": "Customize your dark mode for the web!",
    "homepage_url": "https:\/\/mybrowseraddon.com\/custom-dark-mode.html",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Custom Dark Mode",
        "default_popup": "data\/popup\/popup.html",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "js": [
                "data\/content_script\/inject.js"
            ]
        }
    ],
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}