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