Tree Explorer for Github
Show the file tree for PR's and commits
ما هو Tree Explorer for Github؟
Tree Explorer for Github هو إضافة Chrome تم تطويرها بواسطة Fabio Picheli، والميزة الرئيسية لها هي "Show the file tree for PR's and commits".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Tree Explorer for Github
قم بتنزيل ملفات الامتداد Tree Explorer for Github بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Improve GitHub tree explorer adding a file tree on PR's and commits Contribute: https://github.com/picheli20/github-code-tree
معلومات أساسية عن التمديد
الاسم | Tree Explorer for Github |
ID | caffoilocbbhnkdlpdcfanpbeholjdii |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/tree-explorer-for-github/caffoilocbbhnkdlpdcfanpbeholjdii |
الوصف | Show the file tree for PR's and commits |
حجم الملف | 43.13 KB |
عدد التثبيتات | 552 |
النسخة الحالية | 1.4.1 |
آخر تحديث | 2020-12-15 |
تاريخ النشر | 2019-04-02 |
تقييم | 4.91/5 مجموع تقييمات 11 |
المطور | Fabio Picheli |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tree Explorer for Github", "version": "1.4.1", "description": "Show the file tree for PR's and commits", "manifest_version": 2, "permissions": [ "activeTab", "storage", "https:\/\/github.com\/*" ], "browser_action": { "default_icon": "icon.png", "default_popup": "app\/popup\/index.html" }, "optional_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "lib\/jquery-1.11.1.min.js", "app\/background\/icons.js", "app\/background\/style.js", "app\/background\/index.js" ] } ] } |