Save SVG as PNG

Save SVG images as PNG. Navigate to an .svg file, right click on it and click on the context menu item 'Save SVG as PNG.

什麼是Save SVG as PNG?

Save SVG as PNG是由Einar Egilsson開發的Chrome擴展程式,該擴展的主要功能是“Save SVG images as PNG. Navigate to an .svg file, right click on it and click on the context menu item 'Save SVG as PNG.”。

擴展截圖

screenshot
screenshot

下載Save SVG as PNG擴展crx文件

下載Save SVG as PNG擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Lets you click on the extension icon or right click on an .svg file and choose Save SVG as PNG. You will be able to specify the desired width of the rendered PNG image. The image will be opened in a new tab where you can see it and right click on it to save it to disk.

This only works if you have the .svg file open in its own tab, you can't click on a svg file that's embedded in a page, you would first have to right click on it, choose "Open image in new tab" and then go to that tab to convert it to png.                    

擴展基本資訊

名稱 Save SVG as PNG Save SVG as PNG
ID dihlbjcdgfoehmhbklciidmolbmabkki
官方網址 https://chromewebstore.google.com/detail/save-svg-as-png/dihlbjcdgfoehmhbklciidmolbmabkki
簡介 Save SVG images as PNG. Navigate to an .svg file, right click on it and click on the context menu item 'Save SVG as PNG.
檔案大小 99.75 KB
安裝次數 13,139
目前版本 1.0
更新時間 2018-08-22
上架時間 2018-08-22
評分 2.61/5 共 57 次評分
開發者 Einar Egilsson
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Save SVG as PNG",
    "version": "1.0",
    "author": "Einar Egilsson",
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "description": "Save SVG images as PNG. Navigate to an .svg file, right click on it and click on the context menu item 'Save SVG as PNG.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Click to save current SVG as PNG"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*.svg",
                "http:\/\/*\/*.svg",
                "file:\/\/*\/*.svg"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "tabs"
    ]
}