GitHub Inline SVG
Shows an inline preview of SVG files on GitHub
ما هو GitHub Inline SVG؟
GitHub Inline SVG هو إضافة Chrome تم تطويرها بواسطة Zach Bruggeman، والميزة الرئيسية لها هي "Shows an inline preview of SVG files on GitHub".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة GitHub Inline SVG
قم بتنزيل ملفات الامتداد GitHub Inline SVG بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Shows an inline preview of SVG files on GitHub. You can toggle between viewing the image, or the SVG code. Nifty!
معلومات أساسية عن التمديد
الاسم | GitHub Inline SVG |
ID | jbfbnojdibndlopjgadibhcphchdbfkh |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/github-inline-svg/jbfbnojdibndlopjgadibhcphchdbfkh |
الوصف | Shows an inline preview of SVG files on GitHub |
حجم الملف | 10.42 KB |
عدد التثبيتات | 289 |
النسخة الحالية | 0.0.3 |
آخر تحديث | 2014-08-26 |
تاريخ النشر | 2014-08-26 |
تقييم | 5.00/5 مجموع تقييمات 3 |
المطور | Zach Bruggeman |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/remixz/gh-inline-svg |
عنوان صفحة المساعدة | https://github.com/remixz/gh-inline-svg/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitHub Inline SVG", "description": "Shows an inline preview of SVG files on GitHub", "version": "0.0.3", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "index.js" ] } ], "permissions": [ "https:\/\/github.com\/*" ], "icons": { "48": "icon_48.png", "128": "icon_128.png" } } |