High Contrast

Change or invert the color scheme to make webpages easier to read.

High Contrast란 무엇입니까?

High Contrast은(는) chrome-a11y-extensions에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Change or invert the color scheme to make webpages easier to read."입니다.

확장 프로그램 스크린샷

screenshot

High Contrast 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        High Contrast lets you browse the web with your choice of several high-contrast color filters designed to make it easier to read text.

When you install this extension, all pages are "inverted", so black becomes white and white becomes black. Press the "browser action" icon in the toolbar to toggle it on and off, or customize your settings on a per-site basis. Use a convenient keyboard shortcut to quickly change your settings while you browse.

Other extensions try to change the default colors, but this ends up breaking many popular websites. Only this extension applies filters to your page that invert almost everything - the only exception is photos, which are left alone.

Also note that the Chrome web store and other built-in pages like the New Tab page and Settings pages are unaffected - extensions like this one are not allowed to modify them, by design.                    

확장 프로그램 기본 정보

이름 High Contrast High Contrast
ID djcfdncoelnlbldjfhinnjlhdjlikmph
공식 URL https://chromewebstore.google.com/detail/high-contrast/djcfdncoelnlbldjfhinnjlhdjlikmph
설명 Change or invert the color scheme to make webpages easier to read.
파일 크기 155 KB
설치 횟수 460,710
현재 버전 0.9.3
최근 업데이트 2016-11-08
출시 날짜 2016-11-08
평점 3.48/5 총 5898 개의 평점
개발자 chrome-a11y-extensions
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://code.google.com/p/google-axs-chrome/
개인정보 보호 정책 페이지 URL https://policies.google.com/privacy?hl=en
지원되는 언어 id,ms,de,en,en-GB,fil,fr,sw,nl,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,fa,mr,hi,bn,gu,ta,te,kn-IN,ml,th,am-ET,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_HIGHCONTRAST_APPNAME__",
    "version": "0.9.3",
    "description": "__MSG_HIGHCONTRAST_APPDESC__",
    "manifest_version": 2,
    "permissions": [
        "",
        "tabs"
    ],
    "background": {
        "scripts": [
            "common.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "highcontrast-19.png",
        "default_title": "__MSG_HIGHCONTRAST_APPNAME__",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "highcontrast.js"
            ]
        }
    ],
    "icons": {
        "16": "highcontrast-16.png",
        "48": "highcontrast-48.png",
        "128": "highcontrast-128.png"
    },
    "default_locale": "en"
}