Git First
Takes you to first commit of any GitHub repository
ما هو Git First؟
Git First هو إضافة Chrome تم تطويرها بواسطة https://kamranahmed.info، والميزة الرئيسية لها هي "Takes you to first commit of any GitHub repository".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Git First
قم بتنزيل ملفات الامتداد Git First بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Git First is a chrome extension that takes you to the initial commit of any repository. It adds a context menu item called "Initial Commit" which is shown whenever you are on a repository page and perform a right click. Clicking this button will take you to the first commit of the current repository. Currently, it only supports GitHub, however, support for Gitlab and Bitbucket is under way
معلومات أساسية عن التمديد
الاسم | Git First |
ID | bkodimdeilmanedhmadkjickmfobpjde |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/git-first/bkodimdeilmanedhmadkjickmfobpjde |
الوصف | Takes you to first commit of any GitHub repository |
حجم الملف | 16.82 KB |
عدد التثبيتات | 188 |
النسخة الحالية | 1.0.1 |
آخر تحديث | 2018-11-02 |
تاريخ النشر | 2018-11-02 |
تقييم | 5.00/5 مجموع تقييمات 4 |
المطور | https://kamranahmed.info |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/kamranahmedse/git-first |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Git First", "version": "1.0.1", "manifest_version": 2, "description": "Takes you to first commit of any GitHub repository", "permissions": [ "contextMenus", "activeTab" ], "icons": { "16": "\/icons\/icon16.png", "48": "\/icons\/icon48.png", "128": "\/icons\/icon128.png" }, "browser_action": { "default_title": "Git First", "default_icon": "\/icons\/icon128.png" }, "background": { "scripts": [ "script.js" ] } } |