GitHub File Diff
View diffs of files and directories on GitHub.
ما هو GitHub File Diff؟
GitHub File Diff هو إضافة Chrome تم تطويرها بواسطة https://akr.am، والميزة الرئيسية لها هي "View diffs of files and directories on GitHub.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة GitHub File Diff
قم بتنزيل ملفات الامتداد GitHub File Diff بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
To use this extension, go to a file or directory in GitHub and click the **History** button. Then, click on any commit. The extension will override the click to show the diffs of only the relevant files instead of GitHub's default behavior of showing the entire commit's diff. This is especially helpful when a commit is very large and GitHub only shows a partial diff or none at all. To get the regular view, simply refresh the page.
معلومات أساسية عن التمديد
الاسم | GitHub File Diff |
ID | lmhbkinmjbfihpkihjdhcagnigpklinh |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/github-file-diff/lmhbkinmjbfihpkihjdhcagnigpklinh |
الوصف | View diffs of files and directories on GitHub. |
حجم الملف | 354 KB |
عدد التثبيتات | 153 |
النسخة الحالية | 1.1.9 |
آخر تحديث | 2024-02-04 |
تاريخ النشر | 2020-03-31 |
المطور | https://akr.am |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
عنوان صفحة المساعدة | https://github.com/mohd-akram/github-file-diff/issues |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitHub File Diff", "version": "1.1.9", "description": "View diffs of files and directories on GitHub.", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png", "256": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "css": [ "vendor.css" ], "js": [ "vendor.js", "main.js" ] } ] } |