VectorDrawable Previewer

This extension can preview the vector drawable when you open it

ما هو VectorDrawable Previewer؟

VectorDrawable Previewer هو إضافة Chrome تم تطويرها بواسطة jmatsu، والميزة الرئيسية لها هي "This extension can preview the vector drawable when you open it".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة VectorDrawable Previewer

قم بتنزيل ملفات الامتداد VectorDrawable Previewer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم VectorDrawable Previewer VectorDrawable Previewer
ID oidfgbojkfckgmkljhacgnckncpanbhm
عنوان URL الرسمي https://chromewebstore.google.com/detail/vectordrawable-previewer/oidfgbojkfckgmkljhacgnckncpanbhm
الوصف This extension can preview the vector drawable when you open it
حجم الملف 20.13 KB
عدد التثبيتات 1,295
النسخة الحالية 1.2.0
آخر تحديث 2020-05-31
تاريخ النشر 2020-05-30
تقييم 1.50/5 مجموع تقييمات 8
المطور jmatsu
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/jmatsu/vector-drawable-previewer
عنوان صفحة المساعدة https://github.com/jmatsu/vector-drawable-previewer/issues
اللغات المدعومة 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"
    ]
}