VectorDrawable Previewer

This extension can preview the vector drawable when you open it

¿Qué es VectorDrawable Previewer?

VectorDrawable Previewer es una extensión de Chrome desarrollada por jmatsu, y su función principal es "This extension can preview the vector drawable when you open it".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión VectorDrawable Previewer

Descarga archivos de extensión VectorDrawable Previewer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre VectorDrawable Previewer VectorDrawable Previewer
ID oidfgbojkfckgmkljhacgnckncpanbhm
URL Oficial https://chromewebstore.google.com/detail/vectordrawable-previewer/oidfgbojkfckgmkljhacgnckncpanbhm
Descripción This extension can preview the vector drawable when you open it
Tamaño del Archivo 20.13 KB
Cantidad de Instalaciones 1,295
Versión Actual 1.2.0
Última Actualización 2020-05-31
Fecha de Publicación 2020-05-30
Calificación 1.50/5 Total de 8 Calificaciones
Desarrollador jmatsu
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/jmatsu/vector-drawable-previewer
URL de la Página de Ayuda https://github.com/jmatsu/vector-drawable-previewer/issues
Idiomas Soportados 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"
    ]
}