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.
Cos'è Save SVG as PNG?
Save SVG as PNG è un'estensione di Chrome sviluppata da Einar Egilsson, e la sua funzione principale è "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 dell'Estensione
Scarica il file CRX dell'estensione Save SVG as PNG
Scarica i file di estensione Save SVG as 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
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.
Informazioni di Base sull'Estensione
Nome | Save SVG as PNG |
ID | dihlbjcdgfoehmhbklciidmolbmabkki |
URL Ufficiale | https://chromewebstore.google.com/detail/save-svg-as-png/dihlbjcdgfoehmhbklciidmolbmabkki |
Descrizione | 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. |
Dimensione del File | 99.75 KB |
Conteggio Installazioni | 13,139 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2018-08-22 |
Data di Pubblicazione | 2018-08-22 |
Valutazione | 2.61/5 Totale 57 Valutazioni |
Sviluppatore | Einar Egilsson |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |