Bitbucket Patch Download

Download patch files from Bitbucket API.

Wat is Bitbucket Patch Download?

Bitbucket Patch Download is een Chrome-extensie ontwikkeld door Mattias Lundberg, en de belangrijkste functie is "Download patch files from Bitbucket API.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Bitbucket Patch Download

Download Bitbucket Patch Download-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Bitbucket Patch Download Bitbucket Patch Download
ID kmjcnbdahgjagapjigblfpkggohhceka
Officiële URL https://chromewebstore.google.com/detail/bitbucket-patch-download/kmjcnbdahgjagapjigblfpkggohhceka
Beschrijving Download patch files from Bitbucket API.
Bestandsgrootte 27.85 KB
Aantal Installaties 290
Huidige Versie 0.2.5
Laatst Bijgewerkt 2015-11-29
Publicatiedatum 2015-11-29
Beoordeling 2.80/5 Totaal 5 Beoordelingen
Ontwikkelaar Mattias Lundberg
Betalingswijze free
Extensiewebsite https://github.com/mattiaslundberg/BitbucketChromeDownload
Ondersteunde Talen 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"
            ]
        }
    ]
}