VectorDrawable Previewer

This extension can preview the vector drawable when you open it

VectorDrawable Previewer là gì?

VectorDrawable Previewer là một tiện ích mở rộng Chrome được phát triển bởi jmatsu, và tính năng chính của nó là "This extension can preview the vector drawable when you open it".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng VectorDrawable Previewer

Tải xuống các tệp mở rộng VectorDrawable Previewer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên VectorDrawable Previewer VectorDrawable Previewer
ID oidfgbojkfckgmkljhacgnckncpanbhm
URL Chính Thức https://chromewebstore.google.com/detail/vectordrawable-previewer/oidfgbojkfckgmkljhacgnckncpanbhm
Mô tả This extension can preview the vector drawable when you open it
Kích Thước Tệp 20.13 KB
Số Lần Cài Đặt 1,295
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2020-05-31
Ngày Phát Hành 2020-05-30
Đánh Giá 1.50/5 Tổng số 8 Đánh Giá
Nhà Phát Triển jmatsu
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jmatsu/vector-drawable-previewer
URL Trang Trợ Giúp https://github.com/jmatsu/vector-drawable-previewer/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}