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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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"
    ]
}