Bitbucket Patch Download
Download patch files from Bitbucket API.
What is Bitbucket Patch Download?
Bitbucket Patch Download is a Chrome extension developed by Mattias Lundberg, and its main feature is "Download patch files from Bitbucket API.".
Extension Screenshots
Download Bitbucket Patch Download Extension CRX File
Download Bitbucket Patch Download extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Bitbucket Patch Download |
ID | kmjcnbdahgjagapjigblfpkggohhceka |
Official URL | https://chromewebstore.google.com/detail/bitbucket-patch-download/kmjcnbdahgjagapjigblfpkggohhceka |
Description | Download patch files from Bitbucket API. |
File Size | 27.85 KB |
Installation Count | 290 |
Current Version | 0.2.5 |
Last Updated | 2015-11-29 |
Publish Date | 2015-11-29 |
Rating | 2.80/5 Total 5 Ratings |
Developer | Mattias Lundberg |
Payment Type | free |
Extension Website | https://github.com/mattiaslundberg/BitbucketChromeDownload |
Supported Languages | 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" ] } ] } |