Bitbucket Patch Download
Download patch files from Bitbucket API.
Apa itu Bitbucket Patch Download?
Bitbucket Patch Download adalah ekstensi Chrome yang dikembangkan oleh Mattias Lundberg, dan fitur utamanya adalah "Download patch files from Bitbucket API.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Bitbucket Patch Download
Unduh file ekstensi Bitbucket Patch Download dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Bitbucket Patch Download |
ID | kmjcnbdahgjagapjigblfpkggohhceka |
URL Resmi | https://chromewebstore.google.com/detail/bitbucket-patch-download/kmjcnbdahgjagapjigblfpkggohhceka |
Deskripsi | Download patch files from Bitbucket API. |
Ukuran File | 27.85 KB |
Jumlah Instalasi | 290 |
Versi Saat Ini | 0.2.5 |
Terakhir Diperbarui | 2015-11-29 |
Tanggal Publikasi | 2015-11-29 |
Penilaian | 2.80/5 Total 5 Penilaian |
Pengembang | Mattias Lundberg |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/mattiaslundberg/BitbucketChromeDownload |
Bahasa yang Didukung | 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" ] } ] } |