VectorDrawable Previewer

This extension can preview the vector drawable when you open it

什么是VectorDrawable Previewer?

VectorDrawable Previewer是由jmatsu开发的Chrome扩展程序,该扩展的主要功能是“This extension can preview the vector drawable when you open it”。

扩展截图

screenshot

下载VectorDrawable Previewer扩展crx文件

下载VectorDrawable Previewer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 VectorDrawable Previewer VectorDrawable Previewer
ID oidfgbojkfckgmkljhacgnckncpanbhm
官方URL https://chromewebstore.google.com/detail/vectordrawable-previewer/oidfgbojkfckgmkljhacgnckncpanbhm
简介 This extension can preview the vector drawable when you open it
文件大小 20.13 KB
安装次数 1,295
当前版本 1.2.0
更新时间 2020-05-31
上架时间 2020-05-30
评分 1.50/5 共8次评分
开发者 jmatsu
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/jmatsu/vector-drawable-previewer
帮助页面URL https://github.com/jmatsu/vector-drawable-previewer/issues
支持的语言 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"
    ]
}