VectorDrawable Previewer

This extension can preview the vector drawable when you open it

Co je VectorDrawable Previewer?

VectorDrawable Previewer je rozšíření Chrome vyvinuté jmatsu, a jeho hlavní funkcí je „This extension can preview the vector drawable when you open it“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření VectorDrawable Previewer

Stáhněte si soubory rozšíření VectorDrawable Previewer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název VectorDrawable Previewer VectorDrawable Previewer
ID oidfgbojkfckgmkljhacgnckncpanbhm
Oficiální URL https://chromewebstore.google.com/detail/vectordrawable-previewer/oidfgbojkfckgmkljhacgnckncpanbhm
Popis This extension can preview the vector drawable when you open it
Velikost souboru 20.13 KB
Počet instalací 1,295
Aktuální Verze 1.2.0
Poslední Aktualizace 2020-05-31
Datum Vydání 2020-05-30
Hodnocení 1.50/5 Celkem 8 Hodnocení
Vývojář jmatsu
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/jmatsu/vector-drawable-previewer
URL Stránky Nápovědy https://github.com/jmatsu/vector-drawable-previewer/issues
Podporované Jazyky 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"
    ]
}