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
公式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
Eメール [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"
    ]
}