VectorDrawable Previewer

This extension can preview the vector drawable when you open it

Vad är VectorDrawable Previewer?

VectorDrawable Previewer är en Chrome-tillägg utvecklad av jmatsu, och dess huvudfunktion är "This extension can preview the vector drawable when you open it".

Tilläggsskärmbilder

screenshot

Ladda ner VectorDrawable Previewer-förlängningens CRX-fil

Ladda ner VectorDrawable Previewer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn VectorDrawable Previewer VectorDrawable Previewer
ID oidfgbojkfckgmkljhacgnckncpanbhm
Officiell webbadress https://chromewebstore.google.com/detail/vectordrawable-previewer/oidfgbojkfckgmkljhacgnckncpanbhm
Beskrivning This extension can preview the vector drawable when you open it
Filstorlek 20.13 KB
Antal Installationer 1,295
Aktuell Version 1.2.0
Senast Uppdaterad 2020-05-31
Publiceringsdatum 2020-05-30
Betyg 1.50/5 Totalt 8 Betyg
Utvecklare jmatsu
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/jmatsu/vector-drawable-previewer
Hjälpsida URL https://github.com/jmatsu/vector-drawable-previewer/issues
Stödda Språk 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"
    ]
}