Bitbucket Patch Download

Download patch files from Bitbucket API.

什麼是Bitbucket Patch Download?

Bitbucket Patch Download是由Mattias Lundberg開發的Chrome擴展程式,該擴展的主要功能是“Download patch files from Bitbucket API.”。

擴展截圖

screenshot

下載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                    

擴展基本資訊

名稱 Bitbucket Patch Download Bitbucket Patch Download
ID kmjcnbdahgjagapjigblfpkggohhceka
官方網址 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"
            ]
        }
    ]
}