VectorDrawable Previewer

This extension can preview the vector drawable when you open it

What is VectorDrawable Previewer?

VectorDrawable Previewer is a Chrome extension developed by jmatsu, and its main feature is "This extension can preview the vector drawable when you open it".

Extension Screenshots

screenshot

Download VectorDrawable Previewer Extension CRX File

Download VectorDrawable Previewer 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

                        This is an open-source development tool for Android developers to preview vector drawable files on GitHub or your local.

https://github.com/jmatsu/vector-drawable-previewer

If you have any problems, please create an issue to help the development.                    

Extension Basic Information

Name VectorDrawable Previewer VectorDrawable Previewer
ID oidfgbojkfckgmkljhacgnckncpanbhm
Official URL https://chromewebstore.google.com/detail/vectordrawable-previewer/oidfgbojkfckgmkljhacgnckncpanbhm
Description This extension can preview the vector drawable when you open it
File Size 20.13 KB
Installation Count 1,295
Current Version 1.2.0
Last Updated 2020-05-31
Publish Date 2020-05-30
Rating 1.50/5 Total 8 Ratings
Developer jmatsu
Email [email protected]
Payment Type free
Extension Website https://github.com/jmatsu/vector-drawable-previewer
Help Page URL https://github.com/jmatsu/vector-drawable-previewer/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "VectorDrawable Previewer",
    "description": "This extension can preview the vector drawable when you open it",
    "version": "1.2.0",
    "author": "Jumpei Matsuda @jmatsu",
    "icons": {
        "16": "icon_16.png",
        "32": "icon_32.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "homepage_url": "https:\/\/github.com\/jmatsu\/vector-drawable-previewer\/",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "",
                "file:\/\/\/*"
            ],
            "js": [
                "js\/content_script.js"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ]
}