SVG2PNG

Save inline as .png files

SVG2PNG là gì?

SVG2PNG là một tiện ích mở rộng Chrome được phát triển bởi InEvent, và tính năng chính của nó là "Save inline as .png files".

Ả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 SVG2PNG

Tải xuống các tệp mở rộng SVG2PNG 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

                        A simple Chrome plugin which converts a  element from a webpage to a .png file.

Features:

- Allows you to choose your file name for every single conversion.
- Automatically generates retina size files (1x, 2x and 3x).
- Built-in right within your context menu for easy access.

Additional details can be found at: https://github.com/pedro380085/SVG2PNG                    

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

Tên SVG2PNG SVG2PNG
ID mjmflhaljgohpgdciblbbgkldlpclajd
URL Chính Thức https://chrome.google.com/webstore/detail/svg2png/mjmflhaljgohpgdciblbbgkldlpclajd
Mô tả Save inline as .png files
Kích Thước Tệp 8.39 KB
Số Lần Cài Đặt 449
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2015-11-01
Ngày Phát Hành 2015-11-01
Đánh Giá 1.90/5 Tổng số 10 Đánh Giá
Nhà Phát Triển InEvent
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SVG2PNG",
    "description": "Save inline  as .png files",
    "version": "1.1",
    "icons": {
        "16": "split-16.png",
        "48": "split-48.png",
        "128": "split-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "contextMenus",
        "unlimitedStorage",
        "notifications",
        "activeTab"
    ]
}