Bitbucket Patch Download
Download patch files from Bitbucket API.
Bitbucket Patch Download là gì?
Bitbucket Patch Download là một tiện ích mở rộng Chrome được phát triển bởi Mattias Lundberg, và tính năng chính của nó là "Download patch files from Bitbucket API.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Bitbucket Patch Download
Tải xuống các tệp mở rộng Bitbucket Patch Download dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Bitbucket Patch Download |
ID | kmjcnbdahgjagapjigblfpkggohhceka |
URL Chính Thức | https://chromewebstore.google.com/detail/bitbucket-patch-download/kmjcnbdahgjagapjigblfpkggohhceka |
Mô tả | Download patch files from Bitbucket API. |
Kích Thước Tệp | 27.85 KB |
Số Lần Cài Đặt | 290 |
Phiên Bản Hiện Tại | 0.2.5 |
Cập Nhật Lần Cuối | 2015-11-29 |
Ngày Phát Hành | 2015-11-29 |
Đánh Giá | 2.80/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | Mattias Lundberg |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/mattiaslundberg/BitbucketChromeDownload |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |