Github Clone to Sourcetree Button

Add button to any github repo to clone it into SourceTree

Co to jest Github Clone to Sourcetree Button?

Github Clone to Sourcetree Button to rozszerzenie Chrome opracowane przez gareth.blain, a jego główną funkcją jest „Add button to any github repo to clone it into SourceTree”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Github Clone to Sourcetree Button

Pobierz pliki rozszerzeń Github Clone to Sourcetree Button 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Github Clone to Sourcetree Button Github Clone to Sourcetree Button
ID eopgibgcmlglaofajpkhoomnbdedijmb
Oficjalny URL https://chromewebstore.google.com/detail/github-clone-to-sourcetre/eopgibgcmlglaofajpkhoomnbdedijmb
Opis Add button to any github repo to clone it into SourceTree
Rozmiar pliku 124 KB
Liczba instalacji 66
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2020-10-01
Data Publikacji 2020-03-29
Ocena 4.00/5 Łącznie 2 Oceny
Deweloper gareth.blain
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/GarethBlain/Github-Clone-to-Sourcetree-Button
Adres URL Strony Pomocy https://github.com/GarethBlain/Github-Clone-to-Sourcetree-Button/issues
Obsługiwane Języki 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"
    ]
}