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
官方網址 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"
    ]
}