VectorDrawable Previewer

This extension can preview the vector drawable when you open it

Co to jest VectorDrawable Previewer?

VectorDrawable Previewer to rozszerzenie Chrome opracowane przez jmatsu, a jego główną funkcją jest „This extension can preview the vector drawable when you open it”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia VectorDrawable Previewer

Pobierz pliki rozszerzeń VectorDrawable Previewer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa VectorDrawable Previewer VectorDrawable Previewer
ID oidfgbojkfckgmkljhacgnckncpanbhm
Oficjalny URL https://chromewebstore.google.com/detail/vectordrawable-previewer/oidfgbojkfckgmkljhacgnckncpanbhm
Opis This extension can preview the vector drawable when you open it
Rozmiar pliku 20.13 KB
Liczba instalacji 1,295
Aktualna Wersja 1.2.0
Ostatnia Aktualizacja 2020-05-31
Data Publikacji 2020-05-30
Ocena 1.50/5 Łącznie 8 Oceny
Deweloper jmatsu
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/jmatsu/vector-drawable-previewer
Adres URL Strony Pomocy https://github.com/jmatsu/vector-drawable-previewer/issues
Obsługiwane Języki 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"
    ]
}