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.
¿Qué es Save SVG as PNG?
Save SVG as PNG es una extensión de Chrome desarrollada por Einar Egilsson, y su función principal es "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.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Save SVG as PNG
Descarga archivos de extensión Save SVG as PNG en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Save SVG as PNG |
ID | dihlbjcdgfoehmhbklciidmolbmabkki |
URL Oficial | https://chromewebstore.google.com/detail/save-svg-as-png/dihlbjcdgfoehmhbklciidmolbmabkki |
Descripción | 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. |
Tamaño del Archivo | 99.75 KB |
Cantidad de Instalaciones | 13,139 |
Versión Actual | 1.0 |
Última Actualización | 2018-08-22 |
Fecha de Publicación | 2018-08-22 |
Calificación | 2.61/5 Total de 57 Calificaciones |
Desarrollador | Einar Egilsson |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } |