Color Dropper
An easy to use eyedropper tool that automatically copies the Hex Code of the desired color.
What is Color Dropper?
Color Dropper is a Chrome extension developed by https://colordropper.xyz, and its main feature is "An easy to use eyedropper tool that automatically copies the Hex Code of the desired color.".
Extension Screenshots
Download Color Dropper Extension CRX File
Download Color Dropper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Color Dropper |
ID | cbagleaaaocejmdeichhdkmjebpljckh |
Official URL | https://chromewebstore.google.com/detail/color-dropper/cbagleaaaocejmdeichhdkmjebpljckh |
Description | An easy to use eyedropper tool that automatically copies the Hex Code of the desired color. |
File Size | 51.03 KB |
Installation Count | 63,639 |
Current Version | 1.3.4 |
Last Updated | 2021-08-25 |
Publish Date | 2020-06-25 |
Rating | 4.49/5 Total 35 Ratings |
Developer | https://colordropper.xyz |
[email protected] | |
Payment Type | free |
Help Page URL | https://adamgonen.com |
Supported Languages | 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" } } } } |