Accupix

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

Accupix là gì?

Accupix là một tiện ích mở rộng Chrome được phát triển bởi Sridhar PG, và tính năng chính của nó là "Provides an intuitive eyedropper to pick colors from webpages by providing a zoomed preview of the portion mouse points to.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Accupix

Tải xuống các tệp mở rộng Accupix dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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]                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Accupix Accupix
ID cnoeecignnjfddobmijconiockefppbg
URL Chính Thức https://chrome.google.com/webstore/detail/accupix/cnoeecignnjfddobmijconiockefppbg
Mô tả Provides an intuitive eyedropper to pick colors from webpages by providing a zoomed preview of the portion mouse points to.
Kích Thước Tệp 68.4 KB
Số Lần Cài Đặt 243
Phiên Bản Hiện Tại 1.4.1
Cập Nhật Lần Cuối 2014-01-02
Ngày Phát Hành 2014-01-02
Đánh Giá 2.23/5 Tổng số 13 Đánh Giá
Nhà Phát Triển Sridhar PG
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}