Color Picker

Change bgcolor to dark grey and font color to dark green. Press the icon next to the address bar to toggle on/off.

Color Picker란 무엇입니까?

Color Picker은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Change bgcolor to dark grey and font color to dark green. Press the icon next to the address bar to toggle on/off."입니다.

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

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

확장 프로그램 사용 설명서

                        Change websites' display to protect your eyes! Suitable for people who read online a lot.

Features:
1. Change websites' background color to dark grey and font color to dark green.
2. Press the color picker's icon next to the address bar to toggle between normal website display and protect-eye display.
3. Settings will be saved so the same display is kept when you relaunch a browser.                    

확장 프로그램 기본 정보

이름 Color Picker Color Picker
ID cebngpmffaallpalgamibfalgdipbicm
공식 URL https://chromewebstore.google.com/detail/color-picker/cebngpmffaallpalgamibfalgdipbicm
설명 Change bgcolor to dark grey and font color to dark green. Press the icon next to the address bar to toggle on/off.
파일 크기 6.02 KB
설치 횟수 495
현재 버전 1.2
최근 업데이트 2018-07-22
출시 날짜 2018-07-22
개발자 Unknown
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Color Picker",
    "version": "1.2",
    "description": "Change bgcolor to dark grey and font color to dark green.\nPress the icon next to the address bar to toggle on\/off.",
    "icons": {
        "16": "color_picker.png",
        "48": "color_picker.png",
        "128": "color_picker.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "styles.css",
        "color_picker.png",
        "color_picker_disable.png"
    ],
    "browser_action": {
        "default_icon": "color_picker.png"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ]
}