Github Clone to Sourcetree Button

Add button to any github repo to clone it into SourceTree

ما هو Github Clone to Sourcetree Button؟

Github Clone to Sourcetree Button هو إضافة Chrome تم تطويرها بواسطة gareth.blain، والميزة الرئيسية لها هي "Add button to any github repo to clone it into SourceTree".

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

screenshot

تحميل ملف CRX للإضافة Github Clone to Sourcetree Button

قم بتنزيل ملفات الامتداد Github Clone to Sourcetree Button بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        This is a simple chrome plug-in that adds a button into the GitHub "Code" dropdown that opens SourceTree's clone window with all the details populated to clone the GitHub project you're currently on.                    

معلومات أساسية عن التمديد

الاسم Github Clone to Sourcetree Button Github Clone to Sourcetree Button
ID eopgibgcmlglaofajpkhoomnbdedijmb
عنوان URL الرسمي https://chromewebstore.google.com/detail/github-clone-to-sourcetre/eopgibgcmlglaofajpkhoomnbdedijmb
الوصف Add button to any github repo to clone it into SourceTree
حجم الملف 124 KB
عدد التثبيتات 66
النسخة الحالية 1.0.1
آخر تحديث 2020-10-01
تاريخ النشر 2020-03-29
تقييم 4.00/5 مجموع تقييمات 2
المطور gareth.blain
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/GarethBlain/Github-Clone-to-Sourcetree-Button
عنوان صفحة المساعدة https://github.com/GarethBlain/Github-Clone-to-Sourcetree-Button/issues
اللغات المدعومة en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "js": [
                "script.js"
            ],
            "css": [
                "styles.css"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "description": "Add button to any github repo to clone it into SourceTree",
    "icons": {
        "128": "icon\/icon128.png",
        "16": "icon\/icon16.png",
        "48": "icon\/icon48.png"
    },
    "manifest_version": 2,
    "name": "Github Clone to Sourcetree Button",
    "homepage_url": "https:\/\/github.com\/GarethBlain\/Github-Clone-to-Sourcetree-Button",
    "version": "1.0.1",
    "permissions": [
        "tabs"
    ]
}