TortoiseBucket
Add a TortoiseGit clone button to BitBucket and PR common issue assistance.
ما هو TortoiseBucket؟
TortoiseBucket هو إضافة Chrome تم تطويرها بواسطة Evan Knowles، والميزة الرئيسية لها هي "Add a TortoiseGit clone button to BitBucket and PR common issue assistance.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة TortoiseBucket
قم بتنزيل ملفات الامتداد TortoiseBucket بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
BitBucket is very Atlassian orientated (on account of having been written by them). SourceTree is a fine app, but sometimes you prefer having something a little bit lighter. TortoiseBucket adds a TortoiseGit clone button to the BitBucket interface, next to the SourceTree clone button in the Clone menu. In addition, functionality to provide common PR responses is available (no standard responses provided though).
معلومات أساسية عن التمديد
الاسم | |
ID | fhldifodgnlnljaombiokkinkbfialfl |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/tortoisebucket/fhldifodgnlnljaombiokkinkbfialfl |
الوصف | Add a TortoiseGit clone button to BitBucket and PR common issue assistance. |
حجم الملف | 80.56 KB |
عدد التثبيتات | 59 |
النسخة الحالية | 1.5 |
آخر تحديث | 2019-09-02 |
تاريخ النشر | 2019-09-02 |
تقييم | 4.00/5 مجموع تقييمات 1 |
المطور | Evan Knowles |
نوع الدفع | free |
موقع الإضافة | http://www.knowles.co.za |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "TortoiseBucket", "description": "Add a TortoiseGit clone button to BitBucket and PR common issue assistance.", "version": "1.5", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "onload.js" ] } ], "icons": { "128": "icon.png" }, "options_page": "options.html", "background": { "scripts": [ "context-menu.js" ] }, "permissions": [ "https:\/\/*\/", "http:\/\/*\/", "contextMenus", "storage" ] } |