Github Clone to Sourcetree Button

Add button to any github repo to clone it into SourceTree

Was ist Github Clone to Sourcetree Button?

Github Clone to Sourcetree Button ist eine Chrome-Erweiterung, die von gareth.blain entwickelt wurde, und ihr Hauptmerkmal ist "Add button to any github repo to clone it into SourceTree".

Erweiterungsscreenshots

screenshot

Github Clone to Sourcetree Button-Erweiterungs-CRX-Datei herunterladen

Laden Sie Github Clone to Sourcetree Button-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Github Clone to Sourcetree Button Github Clone to Sourcetree Button
ID eopgibgcmlglaofajpkhoomnbdedijmb
Offizielle URL https://chromewebstore.google.com/detail/github-clone-to-sourcetre/eopgibgcmlglaofajpkhoomnbdedijmb
Beschreibung Add button to any github repo to clone it into SourceTree
Dateigröße 124 KB
Installationsanzahl 66
Aktuelle Version 1.0.1
Letztes Update 2020-10-01
Veröffentlichungsdatum 2020-03-29
Bewertung 4.00/5 Insgesamt 2 Bewertungen
Entwickler gareth.blain
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/GarethBlain/Github-Clone-to-Sourcetree-Button
Hilfeseite URL https://github.com/GarethBlain/Github-Clone-to-Sourcetree-Button/issues
Unterstützte Sprachen 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"
    ]
}