Black and White

Makes all background colors white and all text black

Black and Whiteคืออะไร?

Black and White เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ehkusdev และคุณลักษณะหลักของมันคือ "Makes all background colors white and all text black"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Black and White

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

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

                        Create visual simplicity on the web by making all text on a page black and all background colors white with the click of a button. 

You can also use the keyboard shortcuts Ctrl-Shift-0 to turn all text to black on white and Ctrl-Shift-1 to reload the page and remove it.

This extension is open source under the MIT License; feel free to alter it to suit your own needs.                    

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

ชื่อ Black and White Black and White
ID blmpjmeacjnbcbepgdinbjdgklokpecf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/black-and-white/blmpjmeacjnbcbepgdinbjdgklokpecf
คำอธิบาย Makes all background colors white and all text black
ขนาดไฟล์ 6.74 KB
จำนวนการติดตั้ง 327
เวอร์ชันปัจจุบัน 0.1
อัปเดตครั้งล่าสุด 2017-12-09
วันที่เผยแพร่ 2017-12-09
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา ehkusdev
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Black and White",
    "manifest_version": 2,
    "version": "0.1",
    "description": "Makes all background colors white and all text black",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "black-and-white": {
            "suggested_key": {
                "default": "Ctrl+Shift+0",
                "mac": "Command+Shift+0"
            },
            "description": "Makes text black and background white"
        },
        "remove-black-and-white": {
            "suggested_key": {
                "default": "Ctrl+Shift+1",
                "mac": "Command+Shift+1"
            },
            "description": "Removes black and white effect"
        }
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "blackandwhite.css"
    ],
    "permissions": [
        "activeTab"
    ]
}