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
Eメール [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"
    ]
}