SVG 2 PNG
Convert and Save SVG images to .png from your browser.
Wat is SVG 2 PNG?
SVG 2 PNG is een Chrome-extensie ontwikkeld door shomaster, en de belangrijkste functie is "Convert and Save SVG images to .png from your browser.".
Download het CRX-bestand van de extensie SVG 2 PNG
Download SVG 2 PNG-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | gmhadpjpkkdkolmlhgelnoielopadndc |
Officiële URL | https://chrome.google.com/webstore/detail/svg-2-png/gmhadpjpkkdkolmlhgelnoielopadndc |
Beschrijving | Convert and Save SVG images to .png from your browser. |
Bestandsgrootte | 38.56 KB |
Aantal Installaties | 661 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2014-03-14 |
Publicatiedatum | 2014-03-14 |
Beoordeling | 1.27/5 Totaal 30 Beoordelingen |
Ontwikkelaar | shomaster |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } } |