SVG 2 PNG
Convert and Save SVG images to .png from your browser.
SVG 2 PNGคืออะไร?
SVG 2 PNG เป็นส่วนขยายของ Chrome ที่พัฒนาโดย shomaster และคุณลักษณะหลักของมันคือ "Convert and Save SVG images to .png from your browser."
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SVG 2 PNG
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
URL อย่างเป็นทางการ | 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" ] } } |