Color Overlay

Put color overlay over all the web content.

Color Overlay란 무엇입니까?

Color Overlay은(는) Rawstream에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Put color overlay over all the web content."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Color Overlay is a filter which puts a tint on your browser viewport to make text more readable. Color and opacity are fully configurable. This could be used by people suffering by visual distortions reading the content on the normal background (Scotopic Sensitivity Syndrome). The coloured overlay can improve reading abilities of such users by reducing or eliminate perceptual processing errors.

This a new version of a popular extension. In the new release we listened to our users. So we essentially improved the user interface and added some new features, such as the possibility to save selected colours as favourites.                    

확장 프로그램 기본 정보

이름 Color Overlay Color Overlay
ID glejbiebgbadpnhcjmidgclkjeelddgk
공식 URL https://chromewebstore.google.com/detail/color-overlay/glejbiebgbadpnhcjmidgclkjeelddgk
설명 Put color overlay over all the web content.
파일 크기 65.4 KB
설치 횟수 198,779
현재 버전 2.0.0
최근 업데이트 2019-05-01
출시 날짜 2019-04-30
평점 2.55/5 총 11 개의 평점
개발자 Rawstream
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "2.0.0",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "19": "images\/icon-19.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "Color Overlay",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ]
}