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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } } |