Vector Icon Painter
Draws vector icons in chromium repo.
What is Vector Icon Painter?
Vector Icon Painter is a Chrome extension developed by sadrul, and its main feature is "Draws vector icons in chromium repo.".
Download Vector Icon Painter Extension CRX File
Download Vector Icon Painter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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).
Extension Basic Information
Name | Vector Icon Painter |
ID | gfkbiillekgcdckjigjbjdhfebafnnfo |
Official URL | https://chromewebstore.google.com/detail/vector-icon-painter/gfkbiillekgcdckjigjbjdhfebafnnfo |
Description | Draws vector icons in chromium repo. |
File Size | 10.5 KB |
Installation Count | 99 |
Current Version | 0.1 |
Last Updated | 2018-03-29 |
Publish Date | 2018-03-29 |
Developer | sadrul |
[email protected] | |
Payment Type | free |
Supported Languages | 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\/*" ] } |