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 |
| 官方URL | 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\/*"
]
} | |