Color Grab
Steal beautiful colors from Dribbble easily.
Что такое Color Grab?
Color Grab - это расширение Chrome, разработанное tekeste.kidanu, и его основная функция - "Steal beautiful colors from Dribbble easily.".
Снимки экрана расширения
Скачать файл CRX расширения Color Grab
Скачайте файлы расширений Color Grab в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension makes copying colors from Dribbble shots as easy a single click. Click your favorite color from the chips next to a shot and the Hex code is available on your clipboard!
Основная информация о расширении
Название | Color Grab |
ID | aiamoeimgpbjfhmagepggjdickchgpfd |
Официальный URL | https://chromewebstore.google.com/detail/color-grab/aiamoeimgpbjfhmagepggjdickchgpfd |
Описание | Steal beautiful colors from Dribbble easily. |
Размер файла | 46.97 KB |
Количество установок | 698 |
Текущая Версия | 1.0 |
Последнее Обновление | 2018-07-06 |
Дата публикации | 2018-07-06 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | tekeste.kidanu |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Color Grab", "description": "Steal beautiful colors from Dribbble easily.", "version": "1.0", "homepage_url": "https:\/\/twitter.com\/iamtekeste", "manifest_version": 2, "browser_action": { "default_icon": { "19": "icon19.png", "38": "icon38.png" }, "default_popup": "popup.html" }, "icons": { "128": "128-icon.png" }, "permissions": [ "activeTab", "https:\/\/dribbble.com\/*" ], "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/dribbble.com\/*" ], "css": [ "tippy.css", "content.css" ], "js": [ "tippy.min.js", "bundle.js" ] } ] } |