VectorDrawable Previewer

This extension can preview the vector drawable when you open it

O que é VectorDrawable Previewer?

VectorDrawable Previewer é uma extensão do Chrome desenvolvida por jmatsu, e sua principal característica é "This extension can preview the vector drawable when you open it".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão VectorDrawable Previewer

Baixe arquivos de extensão VectorDrawable Previewer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome VectorDrawable Previewer VectorDrawable Previewer
ID oidfgbojkfckgmkljhacgnckncpanbhm
URL Oficial https://chromewebstore.google.com/detail/vectordrawable-previewer/oidfgbojkfckgmkljhacgnckncpanbhm
Descrição This extension can preview the vector drawable when you open it
Tamanho do Arquivo 20.13 KB
Contagem de Instalações 1,295
Versão Atual 1.2.0
Última Atualização 2020-05-31
Data de Publicação 2020-05-30
Classificação 1.50/5 Total de 8 Avaliações
Desenvolvedor jmatsu
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/jmatsu/vector-drawable-previewer
URL da Página de Ajuda https://github.com/jmatsu/vector-drawable-previewer/issues
Idiomas Suportados 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"
    ]
}