SVG2PNG

Save inline as .png files

Cos'è SVG2PNG?

SVG2PNG è un'estensione di Chrome sviluppata da InEvent, e la sua funzione principale è "Save inline as .png files".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione SVG2PNG

Scarica i file di estensione SVG2PNG in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome SVG2PNG SVG2PNG
ID mjmflhaljgohpgdciblbbgkldlpclajd
URL Ufficiale https://chrome.google.com/webstore/detail/svg2png/mjmflhaljgohpgdciblbbgkldlpclajd
Descrizione Save inline as .png files
Dimensione del File 8.39 KB
Conteggio Installazioni 449
Versione Corrente 1.1
Ultimo Aggiornamento 2015-11-01
Data di Pubblicazione 2015-11-01
Valutazione 1.90/5 Totale 10 Valutazioni
Sviluppatore InEvent
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}