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"
        ]
    }
}