Color Dropper
An easy to use eyedropper tool that automatically copies the Hex Code of the desired color.
Что такое Color Dropper?
Color Dropper - это расширение Chrome, разработанное https://colordropper.xyz, и его основная функция - "An easy to use eyedropper tool that automatically copies the Hex Code of the desired color.".
Снимки экрана расширения
Скачать файл CRX расширения Color Dropper
Скачайте файлы расширений 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 |
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 |
Электронная почта | [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" } } } } |