Github Expand Diff
A user script for Chrome that allows you to expand the missing lines in a Github diff.
ما هو Github Expand Diff؟
Github Expand Diff هو إضافة Chrome تم تطويرها بواسطة Michael Ridgway، والميزة الرئيسية لها هي "A user script for Chrome that allows you to expand the missing lines in a Github diff.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Github Expand Diff
قم بتنزيل ملفات الامتداد Github Expand Diff بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
معلومات أساسية عن التمديد
الاسم | Github Expand Diff |
ID | imakbajpbolcgnkfhhlhipbjppfomlij |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/github-expand-diff/imakbajpbolcgnkfhhlhipbjppfomlij |
الوصف | A user script for Chrome that allows you to expand the missing lines in a Github diff. |
حجم الملف | 5.63 KB |
عدد التثبيتات | 121 |
النسخة الحالية | 0.0.1.6 |
آخر تحديث | 2014-06-18 |
تاريخ النشر | 2014-06-18 |
تقييم | 3.86/5 مجموع تقييمات 7 |
المطور | Michael Ridgway |
نوع الدفع | free |
موقع الإضافة | https://github.com/mridgway/github-expand-diff |
عنوان صفحة المساعدة | https://github.com/mridgway/github-expand-diff/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github Expand Diff", "version": "0.0.1.6", "description": "A user script for Chrome that allows you to expand the missing lines in a Github diff.", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/*.com\/*\/*\/pull\/*", "https:\/\/*.com\/*\/*\/commit\/*", "https:\/\/*.com\/*\/*\/compare\/*" ], "include_globs": [ "https:\/\/github.com\/*", "https:\/\/github.*.com\/*", "https:\/\/git.*.com\/*" ], "run_at": "document_end", "js": [ "github-expand-diff.user.js" ] } ] } |