Bitbucket Patch Download

Download patch files from Bitbucket API.

ما هو Bitbucket Patch Download؟

Bitbucket Patch Download هو إضافة Chrome تم تطويرها بواسطة Mattias Lundberg، والميزة الرئيسية لها هي "Download patch files from Bitbucket API.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Bitbucket Patch Download

قم بتنزيل ملفات الامتداد Bitbucket Patch Download بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
            ]
        }
    ]
}