Website Color Palette
The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…
Что такое Website Color Palette?
Website Color Palette - это расширение Chrome, разработанное Forwards, и его основная функция - "The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl…".
Снимки экрана расширения
Скачать файл CRX расширения Website Color Palette
Скачайте файлы расширений Website Color Palette в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
The first extension that takes the real colors of the web page you are viewing.
- Multiple color formats: rgb, hexadecimal, hsl and more...
- Copy the color instantly (on click).
- No waiting times: 5 milliseconds.
- No fake or random colors. Основная информация о расширении
| Название | |
| ID | kegbegkdllkghhaibpbgoeakihgjbmka |
| Официальный URL | https://chromewebstore.google.com/detail/website-color-palette/kegbegkdllkghhaibpbgoeakihgjbmka |
| Описание | The first extension that takes the real colors of the web page you are viewing. - Multiple color formats: rgb, hexadecimal, hsl… |
| Размер файла | 48.12 KB |
| Количество установок | 731 |
| Текущая Версия | 0.1.0 |
| Последнее Обновление | 2020-12-14 |
| Дата публикации | 2020-12-13 |
| Рейтинг | 4.33/5 Всего 3 оценок |
| Разработчик | Forwards |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://websitecolorpalette.com |
| URL страницы помощи | https://websitecolorpalette.com/contact |
| URL страницы политики конфиденциальности | http://websitecolorpalette.com/privacy-policy |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Website Color Palette",
"manifest_version": 2,
"version": "0.1.0",
"content_scripts": [
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"js": [
"chroma.js",
"content.js"
]
}
],
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_icon": "icons\/icon128.png",
"default_popup": ".\/popup\/index.html",
"default_title": "Website Color Palette"
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
} | |