SVG2PNG

Save inline as .png files

Vad är SVG2PNG?

SVG2PNG är en Chrome-tillägg utvecklad av InEvent, och dess huvudfunktion är "Save inline as .png files".

Tilläggsskärmbilder

screenshot

Ladda ner SVG2PNG-förlängningens CRX-fil

Ladda ner SVG2PNG-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn SVG2PNG SVG2PNG
ID mjmflhaljgohpgdciblbbgkldlpclajd
Officiell webbadress https://chrome.google.com/webstore/detail/svg2png/mjmflhaljgohpgdciblbbgkldlpclajd
Beskrivning Save inline as .png files
Filstorlek 8.39 KB
Antal Installationer 449
Aktuell Version 1.1
Senast Uppdaterad 2015-11-01
Publiceringsdatum 2015-11-01
Betyg 1.90/5 Totalt 10 Betyg
Utvecklare InEvent
Betalningssätt free
Stödda Språk 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"
    ]
}