Chromium Vector Icon Painter
Draws vector .icon files in the Chromium repository as SVG images.
Что такое Chromium Vector Icon Painter?
Chromium Vector Icon Painter - это расширение Chrome, разработанное https://thorium.rocks, и его основная функция - "Draws vector .icon files in the Chromium repository as SVG images.".
Снимки экрана расширения
Скачать файл CRX расширения Chromium Vector Icon Painter
Скачайте файлы расширений Chromium Vector Icon Painter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Extension which can draw .icon files locally, as well as in the Chromium repository at https://chromium.googlesource.com/chromium/src.git Основная информация о расширении
| Название | |
| ID | cnlndebkegcfnbiknohgneobakigplhf |
| Официальный URL | https://chromewebstore.google.com/detail/chromium-vector-icon-pain/cnlndebkegcfnbiknohgneobakigplhf |
| Описание | Draws vector .icon files in the Chromium repository as SVG images. |
| Размер файла | 381 KB |
| Количество установок | 386 |
| Текущая Версия | 0.2.5 |
| Последнее Обновление | 2023-09-03 |
| Дата публикации | 2022-06-28 |
| Разработчик | https://thorium.rocks |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/Alex313031/Chromium-Vector-Icons |
| URL страницы помощи | https://github.com/Alex313031/Chromium-Vector-Icons/issues |
| URL страницы политики конфиденциальности | https://thorium.rocks/COC.html |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"content_scripts": [
{
"css": [
"css\/vector_icon.css"
],
"js": [
"js\/vector_icon.js",
"js\/cs.js"
],
"matches": [
"*:\/\/cs.chromium.org\/*",
"*:\/\/www.chromium.org\/*",
"*:\/\/source.chromium.org\/chromium\/*",
"*:\/\/chromium.googlesource.com\/chromium\/*",
"https:\/\/*\/*",
"http:\/\/*\/*",
"ftp:\/\/*\/*"
],
"run_at": "document_end"
},
{
"css": [
"css\/vector_icon.css"
],
"js": [
"js\/vector_icon.js",
"js\/gitiles.js"
],
"matches": [
"*:\/\/cs.chromium.org\/*",
"*:\/\/www.chromium.org\/*",
"*:\/\/source.chromium.org\/chromium\/*",
"*:\/\/chromium.googlesource.com\/chromium\/*",
"https:\/\/*\/*",
"http:\/\/*\/*",
"ftp:\/\/*\/*"
],
"run_at": "document_end"
},
{
"css": [
"css\/vector_icon.css"
],
"js": [
"js\/vector_icon.js",
"js\/file.js"
],
"matches": [
"file:\/\/*icon"
],
"run_at": "document_end"
}
],
"description": "Draws vector .icon files in the Chromium repository as SVG images.",
"host_permissions": [
"*:\/\/cs.chromium.org\/*",
"*:\/\/www.chromium.org\/*",
"*:\/\/source.chromium.org\/chromium\/*",
"*:\/\/chromium.googlesource.com\/chromium\/*",
"file:\/\/*icon",
"https:\/\/*\/*",
"http:\/\/*\/*",
"ftp:\/\/*\/*"
],
"icons": {
"128": "imgs\/icon_128.png",
"16": "imgs\/icon_16.png",
"19": "imgs\/icon_19.png",
"24": "imgs\/icon_24.png",
"256": "imgs\/icon_256.png",
"32": "imgs\/icon_32.png",
"38": "imgs\/icon_38.png",
"48": "imgs\/icon_48.png",
"64": "imgs\/icon_64.png"
},
"manifest_version": 3,
"minimum_chrome_version": "88",
"name": "Chromium Vector Icon Painter",
"short_name": "Chromium Vectorizor",
"author": "Alex313031",
"homepage_url": "https:\/\/github.com\/Alex313031\/Chromium-Vector-Icons",
"offline_enabled": true,
"version": "0.2.5",
"version_name": "0.2.5"
} | |