Bitbucket Patch Download

Download patch files from Bitbucket API.

Was ist Bitbucket Patch Download?

Bitbucket Patch Download ist eine Chrome-Erweiterung, die von Mattias Lundberg entwickelt wurde, und ihr Hauptmerkmal ist "Download patch files from Bitbucket API.".

Erweiterungsscreenshots

screenshot

Bitbucket Patch Download-Erweiterungs-CRX-Datei herunterladen

Laden Sie Bitbucket Patch Download-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Bitbucket Patch Download Bitbucket Patch Download
ID kmjcnbdahgjagapjigblfpkggohhceka
Offizielle URL https://chromewebstore.google.com/detail/bitbucket-patch-download/kmjcnbdahgjagapjigblfpkggohhceka
Beschreibung Download patch files from Bitbucket API.
Dateigröße 27.85 KB
Installationsanzahl 290
Aktuelle Version 0.2.5
Letztes Update 2015-11-29
Veröffentlichungsdatum 2015-11-29
Bewertung 2.80/5 Insgesamt 5 Bewertungen
Entwickler Mattias Lundberg
Zahlungsart free
Erweiterungswebsite https://github.com/mattiaslundberg/BitbucketChromeDownload
Unterstützte Sprachen 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"
            ]
        }
    ]
}