Bitbucket Patch Download
Download patch files from Bitbucket API.
Cos'è Bitbucket Patch Download?
Bitbucket Patch Download è un'estensione di Chrome sviluppata da Mattias Lundberg, e la sua funzione principale è "Download patch files from Bitbucket API.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Bitbucket Patch Download
Scarica i file di estensione Bitbucket Patch Download in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Bitbucket Patch Download |
ID | kmjcnbdahgjagapjigblfpkggohhceka |
URL Ufficiale | https://chromewebstore.google.com/detail/bitbucket-patch-download/kmjcnbdahgjagapjigblfpkggohhceka |
Descrizione | Download patch files from Bitbucket API. |
Dimensione del File | 27.85 KB |
Conteggio Installazioni | 290 |
Versione Corrente | 0.2.5 |
Ultimo Aggiornamento | 2015-11-29 |
Data di Pubblicazione | 2015-11-29 |
Valutazione | 2.80/5 Totale 5 Valutazioni |
Sviluppatore | Mattias Lundberg |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/mattiaslundberg/BitbucketChromeDownload |
Lingue Supportate | 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" ] } ] } |