Achromeatic

Achromeatic is an AchromaJS-based tool to simulate different conditions of eye vision.

Achromeatic란 무엇입니까?

Achromeatic은(는) Hendrik Brandt에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Achromeatic is an AchromaJS-based tool to simulate different conditions of eye vision."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Important: For security reasons enforced by Google Chrome itself this add-on will not work on the chrome.google.com/webstore website itself.


Supported Vision Simulations
    - Achromatomaly Lacking most color vision
    - Achromatopsia Lacking all color vision (aka color blind)
    - Protanomaly Poor red-green hue discrimination
    - Protanopia Red colors appears dark
    - Deuteranomaly Llightly red-green hue discrimination
    - Deuteranopia Moderate red-green hue discrimination
    - Tritanomaly Low blue-yellow hue discrimination
    - Tritanopia Absence of blue retinal receptors
    - Blurry No glasses or contact lenses
    - Low Contrast Similar to reading a mobile screen in the sunlight
    - High Contrast Pure black-white filter
    - Inverted Colors Invert all colors of a web page                    

확장 프로그램 기본 정보

이름 Achromeatic Achromeatic
ID aaljbccmkbfdgnlbndbngcfimephplbi
공식 URL https://chromewebstore.google.com/detail/achromeatic/aaljbccmkbfdgnlbndbngcfimephplbi
설명 Achromeatic is an AchromaJS-based tool to simulate different conditions of eye vision.
파일 크기 48.84 KB
설치 횟수 226
현재 버전 20.9.0
최근 업데이트 2020-09-04
출시 날짜 2020-06-19
개발자 Hendrik Brandt
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/hebra/achromajs
도움말 페이지 URL https://github.com/hebra/achromajs/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Achromeatic",
    "version": "20.9.0",
    "description": "Achromeatic is an AchromaJS-based tool to simulate different conditions of eye vision.",
    "author": "Hendrik Brandt",
    "icons": {
        "16": "assets\/icon_16.png",
        "32": "assets\/icon_32.png",
        "48": "assets\/icon_48.png",
        "128": "assets\/icon_128.png"
    },
    "background": {
        "scripts": [
            "chrome\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "activeTab",
        "declarativeContent",
        "storage",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "page_action": {
        "browser_style": true,
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/icon_16.png",
            "32": "assets\/icon_32.png",
            "48": "assets\/icon_48.png",
            "128": "assets\/icon_128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "css": [
                "filters.css"
            ]
        }
    ]
}