SVG 2 PNG

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

什么是SVG 2 PNG?

SVG 2 PNG是由shomaster开发的Chrome扩展程序,该扩展的主要功能是“Convert and Save SVG images to .png from your browser.”。

下载SVG 2 PNG扩展crx文件

下载SVG 2 PNG扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 SVG 2 PNG SVG 2 PNG
ID gmhadpjpkkdkolmlhgelnoielopadndc
官方URL https://chrome.google.com/webstore/detail/svg-2-png/gmhadpjpkkdkolmlhgelnoielopadndc
简介 Convert and Save SVG images to .png from your browser.
文件大小 38.56 KB
安装次数 661
当前版本 1.0
更新时间 2014-03-14
上架时间 2014-03-14
评分 1.27/5 共30次评分
开发者 shomaster
付费类型 free
支持的语言 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"
        ]
    }
}