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
官方URL 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"
    ]
}