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"
]
}
]
} | |