Black and White

Makes all background colors white and all text black

Black and White क्या है?

Black and White ehkusdev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Makes all background colors white and all text black"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Black and White एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}