Dark Background and Light Text

Makes every page to have light text on dark background (exact colors are customizable)

Dark Background and Light Textคืออะไร?

Dark Background and Light Text เป็นส่วนขยายของ Chrome ที่พัฒนาโดย baumhoto และคุณลักษณะหลักของมันคือ "Makes every page to have light text on dark background (exact colors are customizable)"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Dark Background and Light Text

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

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

                        Dark Background and Light Text enables dark mode on every webpage. The exact colors are configurable and it can be disabled per domain  e.g. on pages which have their own dark mode e.g. Youtube or Reddit.                    

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

ชื่อ Dark Background and Light Text Dark Background and Light Text
ID cdcoopnlkdlmphjpjggdmhohkiklonkh
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/dark-background-and-light/cdcoopnlkdlmphjpjggdmhohkiklonkh
คำอธิบาย Makes every page to have light text on dark background (exact colors are customizable)
ขนาดไฟล์ 85.73 KB
จำนวนการติดตั้ง 6,000
เวอร์ชันปัจจุบัน 0.6.10
อัปเดตครั้งล่าสุด 2019-01-12
วันที่เผยแพร่ 2019-01-08
คะแนน 4.78/5 รวมทั้งหมด 37 คะแนน
ผู้พัฒนา baumhoto
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/baumhoto/dark-background-light-text-extension/tree/chrome
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Dark Background and Light Text",
    "version": "0.6.10",
    "description": "Makes every page to have light text on dark background (exact colors are customizable)",
    "icons": {
        "48": "icons\/icon48.png"
    },
    "applications": {
        "gecko": {
            "id": "jid1-QoFqdK4qzUfGWQ@jetpack"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/webextension-polyfill\/dist\/browser-polyfill.min.js",
                "lib\/shared.js",
                "lib\/css-color-parser\/csscolorparser.js",
                "lib\/get_acceptable_range.js",
                "lib\/color_utils.js",
                "methods\/stylesheet-processor-abstract.js",
                "methods\/stylesheet-color-processor.js",
                "lib\/content-script.js"
            ],
            "run_at": "document_start",
            "match_about_blank": false,
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "lib\/webextension-polyfill\/dist\/browser-polyfill.min.js",
            "lib\/shared.js",
            "lib\/css-color-parser\/csscolorparser.js",
            "lib\/color_utils.js",
            "lib\/background-script.js"
        ]
    },
    "commands": {
        "global_toggle_hotkey": {
            "suggested_key": "Ctrl+Shift+Y",
            "description": "Toggle enabled globally"
        },
        "tab_toggle_hotkey": {
            "suggested_key": "Ctrl+Y",
            "description": "Toggle enabled for current tab"
        }
    },
    "browser_action": {
        "browser_style": false,
        "default_icon": {
            "16": "icons\/icon16.png",
            "24": "icons\/icon24.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "64": "icons\/icon64.png"
        },
        "default_title": "Dark Background and Light Text",
        "default_popup": "ui\/configure-for-current-tab-panel.html"
    },
    "options_ui": {
        "page": "ui\/preferences.html",
        "browser_style": false,
        "open_in_tab": true
    },
    "permissions": [
        "",
        "tabs",
        "storage",
        "notifications",
        "webRequest",
        "webRequestBlocking"
    ]
}