Vector Icon Painter
Draws vector icons in chromium repo.
什麼是Vector Icon Painter?
Vector Icon Painter是由sadrul開發的Chrome擴展程式,該擴展的主要功能是“Draws vector icons in chromium repo.”。
下載Vector Icon Painter擴展crx文件
下載Vector Icon Painter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Shows a preview of the SVG icons in .icon files in chromium source tree. This should work on both codesearch (cs.chromium.org) or gitiles (chromium.googlesource.com). 擴展基本資訊
| 名稱 | |
| ID | gfkbiillekgcdckjigjbjdhfebafnnfo |
| 官方網址 | https://chromewebstore.google.com/detail/vector-icon-painter/gfkbiillekgcdckjigjbjdhfebafnnfo |
| 簡介 | Draws vector icons in chromium repo. |
| 檔案大小 | 10.5 KB |
| 安裝次數 | 99 |
| 目前版本 | 0.1 |
| 更新時間 | 2018-03-29 |
| 上架時間 | 2018-03-29 |
| 開發者 | sadrul |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"version": "0.1",
"content_scripts": [
{
"css": [
"vector_icon.css"
],
"js": [
"vector_icon.js",
"cs.js"
],
"matches": [
"*:\/\/cs.chromium.org\/*"
],
"run_at": "document_end"
},
{
"css": [
"vector_icon.css"
],
"js": [
"vector_icon.js",
"gitiles.js"
],
"matches": [
"*:\/\/chromium.googlesource.com\/chromium\/src\/*"
],
"run_at": "document_end"
}
],
"description": "Draws vector icons in chromium repo.",
"manifest_version": 2,
"name": "Vector Icon Painter",
"permissions": [
"*:\/\/cs.chromium.org\/*",
"*:\/\/chromium.googlesource.com\/chromium\/src\/*"
]
} | |