Chromium Vector Icon Painter
Draws vector .icon files in the Chromium repository as SVG images.
什麼是Chromium Vector Icon Painter?
Chromium Vector Icon Painter是由https://thorium.rocks開發的Chrome擴展程式,該擴展的主要功能是“Draws vector .icon files in the Chromium repository as SVG images.”。
擴展截圖
下載Chromium Vector Icon Painter擴展crx文件
下載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 |
| 官方網址 | 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"
} | |