SVG 2 PNG
Convert and Save SVG images to .png from your browser.
Cos'è SVG 2 PNG?
SVG 2 PNG è un'estensione di Chrome sviluppata da shomaster, e la sua funzione principale è "Convert and Save SVG images to .png from your browser.".
Scarica il file CRX dell'estensione SVG 2 PNG
Scarica i file di estensione SVG 2 PNG 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
Convert and Save SVG images to .png from your browser, with your browser, and in your browser. No server side processing required! Conversion from SVG to .png is processed with client side JavaScript. SVG 2 PNG handles: - .svg opened as the URL location - Links to .svg files - .svg loaded in img tags - Embedded
Informazioni di Base sull'Estensione
Nome | |
ID | gmhadpjpkkdkolmlhgelnoielopadndc |
URL Ufficiale | https://chrome.google.com/webstore/detail/svg-2-png/gmhadpjpkkdkolmlhgelnoielopadndc |
Descrizione | Convert and Save SVG images to .png from your browser. |
Dimensione del File | 38.56 KB |
Conteggio Installazioni | 661 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2014-03-14 |
Data di Pubblicazione | 2014-03-14 |
Valutazione | 1.27/5 Totale 30 Valutazioni |
Sviluppatore | shomaster |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "SVG 2 PNG", "description": "Convert and Save SVG images to .png from your browser.", "version": "1.0", "icons": { "16": "svg2png_sm.png", "48": "svg2png_md.png", "128": "svg2png_lg.png" }, "permissions": [ "contextMenus", "tabs", "http:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "rgbcolor.js", "StackBlur.js", "canvg.js", "svgrasterize.js" ] } } |