Bitbucket Patch Download
Download patch files from Bitbucket API.
¿Qué es Bitbucket Patch Download?
Bitbucket Patch Download es una extensión de Chrome desarrollada por Mattias Lundberg, y su función principal es "Download patch files from Bitbucket API.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Bitbucket Patch Download
Descarga archivos de extensión Bitbucket Patch Download en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Bitbucket Patch Download |
ID | kmjcnbdahgjagapjigblfpkggohhceka |
URL Oficial | https://chromewebstore.google.com/detail/bitbucket-patch-download/kmjcnbdahgjagapjigblfpkggohhceka |
Descripción | Download patch files from Bitbucket API. |
Tamaño del Archivo | 27.85 KB |
Cantidad de Instalaciones | 290 |
Versión Actual | 0.2.5 |
Última Actualización | 2015-11-29 |
Fecha de Publicación | 2015-11-29 |
Calificación | 2.80/5 Total de 5 Calificaciones |
Desarrollador | Mattias Lundberg |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/mattiaslundberg/BitbucketChromeDownload |
Idiomas Soportados | 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" ] } ] } |