Github Clone to Sourcetree Button
Add button to any github repo to clone it into SourceTree
Github Clone to Sourcetree Buttonคืออะไร?
Github Clone to Sourcetree Button เป็นส่วนขยายของ Chrome ที่พัฒนาโดย gareth.blain และคุณลักษณะหลักของมันคือ "Add button to any github repo to clone it into SourceTree"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Github Clone to Sourcetree Button
ดาวน์โหลดไฟล์ส่วนขยาย Github Clone to Sourcetree Button ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is a simple chrome plug-in that adds a button into the GitHub "Code" dropdown that opens SourceTree's clone window with all the details populated to clone the GitHub project you're currently on.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Github Clone to Sourcetree Button |
ID | eopgibgcmlglaofajpkhoomnbdedijmb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/github-clone-to-sourcetre/eopgibgcmlglaofajpkhoomnbdedijmb |
คำอธิบาย | Add button to any github repo to clone it into SourceTree |
ขนาดไฟล์ | 124 KB |
จำนวนการติดตั้ง | 66 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2020-10-01 |
วันที่เผยแพร่ | 2020-03-29 |
คะแนน | 4.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | gareth.blain |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/GarethBlain/Github-Clone-to-Sourcetree-Button |
URL หน้าช่วยเหลือ | https://github.com/GarethBlain/Github-Clone-to-Sourcetree-Button/issues |
ภาษาที่รองรับ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "js": [ "script.js" ], "css": [ "styles.css" ], "matches": [ "https:\/\/github.com\/*" ] } ], "background": { "scripts": [ "background.js" ] }, "description": "Add button to any github repo to clone it into SourceTree", "icons": { "128": "icon\/icon128.png", "16": "icon\/icon16.png", "48": "icon\/icon48.png" }, "manifest_version": 2, "name": "Github Clone to Sourcetree Button", "homepage_url": "https:\/\/github.com\/GarethBlain\/Github-Clone-to-Sourcetree-Button", "version": "1.0.1", "permissions": [ "tabs" ] } |