SVG2PNG

Save inline as .png files

什麼是SVG2PNG?

SVG2PNG是由InEvent開發的Chrome擴展程式,該擴展的主要功能是“Save inline as .png files”。

擴展截圖

screenshot

下載SVG2PNG擴展crx文件

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

擴展使用說明

                        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                    

擴展基本資訊

名稱 SVG2PNG SVG2PNG
ID mjmflhaljgohpgdciblbbgkldlpclajd
官方網址 https://chrome.google.com/webstore/detail/svg2png/mjmflhaljgohpgdciblbbgkldlpclajd
簡介 Save inline as .png files
檔案大小 8.39 KB
安裝次數 449
目前版本 1.1
更新時間 2015-11-01
上架時間 2015-11-01
評分 1.90/5 共 10 次評分
開發者 InEvent
付費類型 free
支援的語言 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"
    ]
}