SVG2PNG

Save inline as .png files

What is SVG2PNG?

SVG2PNG is a Chrome extension developed by InEvent, and its main feature is "Save inline as .png files".

Extension Screenshots

screenshot

Download SVG2PNG Extension CRX File

Download SVG2PNG extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name SVG2PNG SVG2PNG
ID mjmflhaljgohpgdciblbbgkldlpclajd
Official URL https://chrome.google.com/webstore/detail/svg2png/mjmflhaljgohpgdciblbbgkldlpclajd
Description Save inline as .png files
File Size 8.39 KB
Installation Count 449
Current Version 1.1
Last Updated 2015-11-01
Publish Date 2015-11-01
Rating 1.90/5 Total 10 Ratings
Developer InEvent
Payment Type free
Supported Languages 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"
    ]
}