Color Dropper

An easy to use eyedropper tool that automatically copies the Hex Code of the desired color.

Color Dropper là gì?

Color Dropper là một tiện ích mở rộng Chrome được phát triển bởi https://colordropper.xyz, và tính năng chính của nó là "An easy to use eyedropper tool that automatically copies the Hex Code of the desired color.".

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

screenshot

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

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

                        Press the dropper icon on the menu bar or use keyboard shortcut and then click on any part of your browser screen. Automatically capture (and copy) the hex code to your clipboard. A small tooltip shows what color you currently have selected and, when clicked, will tell you what hex code is successfully copied.

Easy to use. Copies color in just one click. Extremely useful for developers and artists. 

☆ Default keyboard shortcut to activate is Ctrl+Shift+E (Cmd+Shift+E on Mac) ☆
☆ Shortcut can be changed by navigating to chrome://extensions/shortcuts ☆

Won't work on new tab page, Chrome settings pages, and the Chrome Web Store.

Works on the latest versions of Chrome.                    

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

Tên Color Dropper Color Dropper
ID cbagleaaaocejmdeichhdkmjebpljckh
URL Chính Thức https://chromewebstore.google.com/detail/color-dropper/cbagleaaaocejmdeichhdkmjebpljckh
Mô tả An easy to use eyedropper tool that automatically copies the Hex Code of the desired color.
Kích Thước Tệp 51.03 KB
Số Lần Cài Đặt 63,639
Phiên Bản Hiện Tại 1.3.4
Cập Nhật Lần Cuối 2021-08-25
Ngày Phát Hành 2020-06-25
Đánh Giá 4.49/5 Tổng số 35 Đánh Giá
Nhà Phát Triển https://colordropper.xyz
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://adamgonen.com
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Color Dropper",
    "version": "1.3.4",
    "description": "An easy to use eyedropper tool that automatically copies the Hex Code of the desired color.",
    "homepage_url": "https:\/\/colordropper.xyz",
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "48": "assets\/48-color.png",
            "128": "assets\/128-color.png"
        }
    },
    "web_accessible_resources": [
        "assets\/*"
    ],
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "48": "assets\/48-color.png",
        "128": "assets\/128-color.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+E"
            }
        }
    }
}