Bitbucket Patch Download
Download patch files from Bitbucket API.
Hvad er Bitbucket Patch Download?
Bitbucket Patch Download er en Chrome-udvidelse udviklet af Mattias Lundberg, og dens hovedfunktion er "Download patch files from Bitbucket API.".
Udvidelsesskærmbilleder
Download Bitbucket Patch Download-udvidelses-CRX-fil
Download Bitbucket Patch Download-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Bitbucket Patch Download |
ID | kmjcnbdahgjagapjigblfpkggohhceka |
Officiel URL | https://chromewebstore.google.com/detail/bitbucket-patch-download/kmjcnbdahgjagapjigblfpkggohhceka |
Beskrivelse | Download patch files from Bitbucket API. |
Filstørrelse | 27.85 KB |
Antal Installationer | 290 |
Nuværende Version | 0.2.5 |
Senest Opdateret | 2015-11-29 |
Udgivelsesdato | 2015-11-29 |
Bedømmelse | 2.80/5 Samlet 5 Bedømmelser |
Udvikler | Mattias Lundberg |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/mattiaslundberg/BitbucketChromeDownload |
Understøttede Sprog | 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" ] } ] } |