Bitbucket Patch Download
Download patch files from Bitbucket API.
Co to jest Bitbucket Patch Download?
Bitbucket Patch Download to rozszerzenie Chrome opracowane przez Mattias Lundberg, a jego główną funkcją jest „Download patch files from Bitbucket API.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Bitbucket Patch Download
Pobierz pliki rozszerzeń Bitbucket Patch Download w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
                        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                     Podstawowe informacje o rozszerzeniu
| Nazwa |   |  
| ID | kmjcnbdahgjagapjigblfpkggohhceka | 
| Oficjalny URL | https://chromewebstore.google.com/detail/bitbucket-patch-download/kmjcnbdahgjagapjigblfpkggohhceka | 
| Opis | Download patch files from Bitbucket API. | 
| Rozmiar pliku | 27.85 KB | 
| Liczba instalacji | 290 | 
| Aktualna Wersja | 0.2.5 | 
| Ostatnia Aktualizacja | 2015-11-29 | 
| Data Publikacji | 2015-11-29 | 
| Ocena | 2.80/5 Łącznie 5 Oceny | 
| Deweloper | Mattias Lundberg | 
| Typ Płatności | free | 
| Strona Rozszerzenia | https://github.com/mattiaslundberg/BitbucketChromeDownload | 
| Obsługiwane Języki | 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"
            ]
        }
    ]
}  |  |