Bitbucket Patch Download
Download patch files from Bitbucket API.
Bitbucket Patch Downloadคืออะไร?
Bitbucket Patch Download เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Mattias Lundberg และคุณลักษณะหลักของมันคือ "Download patch files from Bitbucket API."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bitbucket Patch Download
ดาวน์โหลดไฟล์ส่วนขยาย Bitbucket Patch Download ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Quickly download a Bitbucket pull request as a patch-file. The file can be applied to the checked out git repository by running git am --signoff filename.patch
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Bitbucket Patch Download |
ID | kmjcnbdahgjagapjigblfpkggohhceka |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/bitbucket-patch-download/kmjcnbdahgjagapjigblfpkggohhceka |
คำอธิบาย | Download patch files from Bitbucket API. |
ขนาดไฟล์ | 27.85 KB |
จำนวนการติดตั้ง | 290 |
เวอร์ชันปัจจุบัน | 0.2.5 |
อัปเดตครั้งล่าสุด | 2015-11-29 |
วันที่เผยแพร่ | 2015-11-29 |
คะแนน | 2.80/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | Mattias Lundberg |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/mattiaslundberg/BitbucketChromeDownload |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bitbucket Patch Download", "short_name": "Patch Download", "manifest_version": 2, "version": "0.2.5", "description": "Download patch files from Bitbucket API.", "permissions": [ "declarativeContent", "downloads" ], "icons": { "16": "images\/icon16.png", "64": "images\/icon64.png", "128": "images\/icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": { "19": "images\/icon19.png" }, "default_title": "Download Patch" }, "content_scripts": [ { "matches": [ "https:\/\/bitbucket.org\/*" ], "js": [ "content.js" ] } ] } |