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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Save SVG as PNG एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
    ]
}