Github Clone to Sourcetree Button

Add button to any github repo to clone it into SourceTree

Github Clone to Sourcetree Button là gì?

Github Clone to Sourcetree Button là một tiện ích mở rộng Chrome được phát triển bởi gareth.blain, và tính năng chính của nó là "Add button to any github repo to clone it into SourceTree".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Github Clone to Sourcetree Button

Tải xuống các tệp mở rộng Github Clone to Sourcetree Button dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Github Clone to Sourcetree Button Github Clone to Sourcetree Button
ID eopgibgcmlglaofajpkhoomnbdedijmb
URL Chính Thức https://chromewebstore.google.com/detail/github-clone-to-sourcetre/eopgibgcmlglaofajpkhoomnbdedijmb
Mô tả Add button to any github repo to clone it into SourceTree
Kích Thước Tệp 124 KB
Số Lần Cài Đặt 66
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2020-10-01
Ngày Phát Hành 2020-03-29
Đánh Giá 4.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển gareth.blain
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/GarethBlain/Github-Clone-to-Sourcetree-Button
URL Trang Trợ Giúp https://github.com/GarethBlain/Github-Clone-to-Sourcetree-Button/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}