Change content color

Double click any region in a webpage where you want to make its color warm.

Change content color란 무엇입니까?

Change content color은(는) Jeff T.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Double click any region in a webpage where you want to make its color warm."입니다.

확장 프로그램 스크린샷

screenshot

Change content color 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        For making eyes more comfortable during web surfing, with the extension you can change the background color from white to a warm color for most webpages. Just double click any region where you want to change color in a webpage.

* Some webpages whose content color can not be changed because they may be defended with high security and not allow general script to change them.

Change log:
v1.1 - Urls support ftp now.
v1.2 - More areas can be changed.                    

확장 프로그램 기본 정보

이름 Change content color Change content color
ID llidcihmjceniojdhhdnejnbbjdepphi
공식 URL https://chromewebstore.google.com/detail/change-content-color/llidcihmjceniojdhhdnejnbbjdepphi
설명 Double click any region in a webpage where you want to make its color warm.
파일 크기 92.63 KB
설치 횟수 178
현재 버전 1.2
최근 업데이트 2017-01-10
출시 날짜 2017-01-10
평점 3.67/5 총 6 개의 평점
개발자 Jeff T.
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Change content color",
    "description": "Double click any region in a webpage where you want to make its color warm.",
    "version": "1.2",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*",
                "ftp:\/\/*\/*"
            ],
            "js": [
                "jquery-1.11.3.js",
                "bg_change.js",
                "background.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background2.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_title": "Change content color",
        "default_icon": "paint-brush-128.png"
    },
    "manifest_version": 2,
    "icons": {
        "64": "paint-brush-128.png"
    }
}