Bitbucket Patch Download

Download patch files from Bitbucket API.

Bitbucket Patch Download क्या है?

Bitbucket Patch Download Mattias Lundberg द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Download patch files from Bitbucket API."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Bitbucket Patch Download एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Bitbucket Patch Download Bitbucket Patch Download
ID kmjcnbdahgjagapjigblfpkggohhceka
आधिकारिक URL https://chromewebstore.google.com/detail/bitbucket-patch-download/kmjcnbdahgjagapjigblfpkggohhceka
विवरण Download patch files from Bitbucket API.
फ़ाइल का आकार 27.85 KB
स्थापना संख्या 290
वर्तमान संस्करण 0.2.5
अंतिम अपडेट 2015-11-29
प्रकाशन तिथि 2015-11-29
रेटिंग 2.80/5 कुल 5 रेटिंग्स
डेवलपर Mattias Lundberg
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/mattiaslundberg/BitbucketChromeDownload
समर्थित भाषाएँ 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"
            ]
        }
    ]
}