Bitbucket Patch Download
Download patch files from Bitbucket API.
什么是Bitbucket Patch Download?
Bitbucket Patch Download是由Mattias Lundberg开发的Chrome扩展程序,该扩展的主要功能是“Download patch files from Bitbucket API.”。
扩展截图
下载Bitbucket Patch Download扩展crx文件
下载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 扩展基本信息
| 名称 | |
| 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"
]
}
]
} | |