Color Eyedropper

Pick colors from web pages, color picker and your personal color history.

Color Eyedropper là gì?

Color Eyedropper là một tiện ích mở rộng Chrome được phát triển bởi https://smalldatatools.com, và tính năng chính của nó là "Pick colors from web pages, color picker and your personal color history.".

Ả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 Color Eyedropper

Tải xuống các tệp mở rộng Color Eyedropper 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

                        With our lightweight eyedropper extension, you can quickly select colors from webpages or from advanced color picker. 

The extension lets you get the exact HEX/RGB/HSV value and keep the history of picked colors. It is very nice for any graphics designers or web developers, or for anyone who just really likes colors. 

This extension doesn't collect or store any personal information.

CHANGELOG
==========
Version 0.1.5 - 0.1.6
- Add google analytics
- Update tab permission

Version 0.1.4 - 2023-08-04
- Update extension title & description

Version 0.1.3 - 2022-12-15
- Fix occasional picker failures

Version 0.1.0 - 0.1.2
- Grab colors from web pages
- Get HEX/RGB/HSB values
- History of picked color                    

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

Tên Color Eyedropper Color Eyedropper
ID hkjmjcmlaoidmlpbmdogcklanooafpne
URL Chính Thức https://chromewebstore.google.com/detail/color-eyedropper/hkjmjcmlaoidmlpbmdogcklanooafpne
Mô tả Pick colors from web pages, color picker and your personal color history.
Kích Thước Tệp 208 KB
Số Lần Cài Đặt 161
Phiên Bản Hiện Tại 0.1.6
Cập Nhật Lần Cuối 2024-01-19
Ngày Phát Hành 2022-06-22
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://smalldatatools.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.smalldatatools.com
URL Trang Trợ Giúp https://www.smalldatatools.com/contact-us.php
URL Trang Chính Sách Bảo Mật https://www.smalldatatools.com/privacy-policy.php
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Color Eyedropper",
    "description": "Pick colors from web pages, color picker and your personal color history.",
    "version": "0.1.6",
    "action": {
        "default_icon": "images\/logo.png",
        "default_popup": "index.html"
    },
    "icons": {
        "16": "images\/logo.png",
        "48": "images\/logo.png",
        "128": "images\/logo.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "background": {
        "service_worker": "\/js\/background.js"
    },
    "commands": {
        "activate": {
            "description": "Activate eyedropper from web page",
            "suggested_key": {
                "default": "Alt+P"
            }
        }
    }
}