Black and White

Makes all background colors white and all text black

Co je Black and White?

Black and White je rozšíření Chrome vyvinuté ehkusdev, a jeho hlavní funkcí je „Makes all background colors white and all text black“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Black and White

Stáhněte si soubory rozšíření Black and White ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Black and White Black and White
ID blmpjmeacjnbcbepgdinbjdgklokpecf
Oficiální URL https://chromewebstore.google.com/detail/black-and-white/blmpjmeacjnbcbepgdinbjdgklokpecf
Popis Makes all background colors white and all text black
Velikost souboru 6.74 KB
Počet instalací 327
Aktuální Verze 0.1
Poslední Aktualizace 2017-12-09
Datum Vydání 2017-12-09
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář ehkusdev
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    ]
}