Bitbucket Patch Download
Download patch files from Bitbucket API.
Qu'est-ce que Bitbucket Patch Download ?
Bitbucket Patch Download est une extension Chrome développée par Mattias Lundberg, et sa fonction principale est "Download patch files from Bitbucket API.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Bitbucket Patch Download
Téléchargez les fichiers d'extension Bitbucket Patch Download au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Bitbucket Patch Download |
ID | kmjcnbdahgjagapjigblfpkggohhceka |
URL Officiel | https://chromewebstore.google.com/detail/bitbucket-patch-download/kmjcnbdahgjagapjigblfpkggohhceka |
Description | Download patch files from Bitbucket API. |
Taille du Fichier | 27.85 KB |
Nombre d'Installations | 290 |
Version Actuelle | 0.2.5 |
Dernière Mise à Jour | 2015-11-29 |
Date de Publication | 2015-11-29 |
Évaluation | 2.80/5 Total 5 Évaluations |
Développeur | Mattias Lundberg |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/mattiaslundberg/BitbucketChromeDownload |
Langues Prises en Charge | 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" ] } ] } |