Accupix

Provides an intuitive eyedropper to pick colors from webpages by providing a zoomed preview of the portion mouse points to.

Accupix란 무엇입니까?

Accupix은(는) Sridhar PG에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Provides an intuitive eyedropper to pick colors from webpages by providing a zoomed preview of the portion mouse points to."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Eyedropper for Google Chrome. The extension also automatically copies the selected hex color code value to clipboard.

Some of the shortcuts that will come handy:

- Use Scroll to Zoom In/Out
- Use Arrow keys to move the cursor to precisely match the required pixel
- Enter key picks the pixel
- Esc closes the picker

For Issues or Feature requests, mail to: [email protected]                    

확장 프로그램 기본 정보

이름 Accupix Accupix
ID cnoeecignnjfddobmijconiockefppbg
공식 URL https://chrome.google.com/webstore/detail/accupix/cnoeecignnjfddobmijconiockefppbg
설명 Provides an intuitive eyedropper to pick colors from webpages by providing a zoomed preview of the portion mouse points to.
파일 크기 68.4 KB
설치 횟수 243
현재 버전 1.4.1
최근 업데이트 2014-01-02
출시 날짜 2014-01-02
평점 2.23/5 총 13 개의 평점
개발자 Sridhar PG
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Accupix",
    "version": "1.4.1",
    "manifest_version": 2,
    "background": {
        "page": "bg\/background.html"
    },
    "browser_action": {
        "default_icon": "images\/picker_32.png",
        "default_title": "Color Picker"
    },
    "content_scripts": [
        {
            "css": [
                "content\/content.css"
            ],
            "js": [
                "tp\/jquery.js",
                "tp\/jquery.ba-throttle-debounce.js",
                "content\/content.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "description": "Provides an intuitive eyedropper to pick colors from webpages by providing a zoomed preview of the portion mouse points to.",
    "icons": {
        "128": "images\/picker_128.png",
        "16": "images\/picker_16.png",
        "32": "images\/picker_32.png",
        "64": "images\/picker_64.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "contextMenus",
        "clipboardWrite"
    ]
}