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文件

下載Accupix擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}