Color Dropper

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

什麼是Color Dropper?

Color Dropper是由https://colordropper.xyz開發的Chrome擴展程式,該擴展的主要功能是“An easy to use eyedropper tool that automatically copies the Hex Code of the desired color.”。

擴展截圖

screenshot

下載Color Dropper擴展crx文件

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

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Color Dropper Color Dropper
ID cbagleaaaocejmdeichhdkmjebpljckh
官方網址 https://chromewebstore.google.com/detail/color-dropper/cbagleaaaocejmdeichhdkmjebpljckh
簡介 An easy to use eyedropper tool that automatically copies the Hex Code of the desired color.
檔案大小 51.03 KB
安裝次數 63,639
目前版本 1.3.4
更新時間 2021-08-25
上架時間 2020-06-25
評分 4.49/5 共 35 次評分
開發者 https://colordropper.xyz
電子郵箱 [email protected]
付費類型 free
說明頁面URL https://adamgonen.com
支援的語言 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"
            }
        }
    }
}