SVG 2 PNG

Convert and Save SVG images to .png from your browser.

SVG 2 PNG là gì?

SVG 2 PNG là một tiện ích mở rộng Chrome được phát triển bởi shomaster, và tính năng chính của nó là "Convert and Save SVG images to .png from your browser.".

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

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

                        Convert and Save SVG images to .png from your browser,
with your browser, and in your browser. No server side processing required!
Conversion from SVG to .png is processed with client side JavaScript.

SVG 2 PNG handles:
- .svg opened as the URL location
- Links to .svg files
- .svg loaded in img tags
- Embedded  tags on pages

Instructions:
Install extension from Chrome Extensions store.
Right-click on anything SVG 2 PNG handles and select "Save SVG as .png" from the menu.

Try an open .svg file, a link to an .svg file, a .svg img tag, or an embedded svg tag on a page.

The file should download as a file named "download.png".
Congratulations, you have successfully converted and saved from SVG to .png

Pro tip:
You can open an .svg file on your computer in your browser and use this extension on it to convert it to .png                    

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

Tên SVG 2 PNG SVG 2 PNG
ID gmhadpjpkkdkolmlhgelnoielopadndc
URL Chính Thức https://chrome.google.com/webstore/detail/svg-2-png/gmhadpjpkkdkolmlhgelnoielopadndc
Mô tả Convert and Save SVG images to .png from your browser.
Kích Thước Tệp 38.56 KB
Số Lần Cài Đặt 661
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2014-03-14
Ngày Phát Hành 2014-03-14
Đánh Giá 1.27/5 Tổng số 30 Đánh Giá
Nhà Phát Triển shomaster
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": "SVG 2 PNG",
    "description": "Convert and Save SVG images to .png from your browser.",
    "version": "1.0",
    "icons": {
        "16": "svg2png_sm.png",
        "48": "svg2png_md.png",
        "128": "svg2png_lg.png"
    },
    "permissions": [
        "contextMenus",
        "tabs",
        "http:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "rgbcolor.js",
            "StackBlur.js",
            "canvg.js",
            "svgrasterize.js"
        ]
    }
}