Black and White

Makes all background colors white and all text black

Vad är Black and White?

Black and White är en Chrome-tillägg utvecklad av ehkusdev, och dess huvudfunktion är "Makes all background colors white and all text black".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Black and White-förlängningens CRX-fil

Ladda ner Black and White-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Black and White Black and White
ID blmpjmeacjnbcbepgdinbjdgklokpecf
Officiell webbadress https://chromewebstore.google.com/detail/black-and-white/blmpjmeacjnbcbepgdinbjdgklokpecf
Beskrivning Makes all background colors white and all text black
Filstorlek 6.74 KB
Antal Installationer 327
Aktuell Version 0.1
Senast Uppdaterad 2017-12-09
Publiceringsdatum 2017-12-09
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare ehkusdev
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}