Palettes from Coolors
Enhanced 'Coolors for Chrome' extension. Generate beautiful palettes in the browser.
Что такое Palettes from Coolors?
Palettes from Coolors - это расширение Chrome, разработанное rajesh64727, и его основная функция - "Enhanced 'Coolors for Chrome' extension. Generate beautiful palettes in the browser.".
Снимки экрана расширения
Скачать файл CRX расширения Palettes from Coolors
Скачайте файлы расширений Palettes from Coolors в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Hi, Shows "coolors.co" color palettes in your web page. It can be -repositioned -enabled/ disabled (by clicking on extension icon again) -used to get new palettes by pressing 'space' key again and again. This piece of work is meant not to harm any business interest of coolors.co and should be treated as compliment from a web developer. In case of any conflict please let me know earliest.
Основная информация о расширении
Название | Palettes from Coolors |
ID | mdfgfkplamgcjdoelfkobgdoopbflloc |
Официальный URL | https://chromewebstore.google.com/detail/palettes-from-coolors/mdfgfkplamgcjdoelfkobgdoopbflloc |
Описание | Enhanced 'Coolors for Chrome' extension. Generate beautiful palettes in the browser. |
Размер файла | 12.64 KB |
Количество установок | 1,403 |
Текущая Версия | 1.0 |
Последнее Обновление | 2021-09-14 |
Дата публикации | 2020-08-16 |
Разработчик | rajesh64727 |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://rajesh64727.github.io/ |
URL страницы помощи | https://rajesh64727.github.io/ |
URL страницы политики конфиденциальности | https://rajesh64727.github.io/privacy.html |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Palettes from Coolors", "version": "1.0", "description": "Enhanced 'Coolors for Chrome' extension. Generate beautiful palettes in the browser.", "browser_action": { "default_icon": { "128": "images\/icon128.png", "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png" } }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ], "permissions": [ "activeTab" ], "icons": { "128": "images\/icon128.png", "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png" } } |