Black and White

Makes all background colors white and all text black

Black and White란 무엇입니까?

Black and White은(는) ehkusdev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes all background colors white and all text black"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Black and White 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}