SVG 2 PNG
Convert and Save SVG images to .png from your browser.
什麼是SVG 2 PNG?
SVG 2 PNG是由shomaster開發的Chrome擴展程式,該擴展的主要功能是“Convert and Save SVG images to .png from your browser.”。
下載SVG 2 PNG擴展crx文件
下載SVG 2 PNG擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | |
ID | gmhadpjpkkdkolmlhgelnoielopadndc |
官方網址 | https://chrome.google.com/webstore/detail/svg-2-png/gmhadpjpkkdkolmlhgelnoielopadndc |
簡介 | Convert and Save SVG images to .png from your browser. |
檔案大小 | 38.56 KB |
安裝次數 | 661 |
目前版本 | 1.0 |
更新時間 | 2014-03-14 |
上架時間 | 2014-03-14 |
評分 | 1.27/5 共 30 次評分 |
開發者 | shomaster |
付費類型 | free |
支援的語言 | 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" ] } } |