Github Clone to Sourcetree Button

Add button to any github repo to clone it into SourceTree

Qu'est-ce que Github Clone to Sourcetree Button ?

Github Clone to Sourcetree Button est une extension Chrome développée par gareth.blain, et sa fonction principale est "Add button to any github repo to clone it into SourceTree".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Github Clone to Sourcetree Button

Téléchargez les fichiers d'extension Github Clone to Sourcetree Button au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Github Clone to Sourcetree Button Github Clone to Sourcetree Button
ID eopgibgcmlglaofajpkhoomnbdedijmb
URL Officiel https://chromewebstore.google.com/detail/github-clone-to-sourcetre/eopgibgcmlglaofajpkhoomnbdedijmb
Description Add button to any github repo to clone it into SourceTree
Taille du Fichier 124 KB
Nombre d'Installations 66
Version Actuelle 1.0.1
Dernière Mise à Jour 2020-10-01
Date de Publication 2020-03-29
Évaluation 4.00/5 Total 2 Évaluations
Développeur gareth.blain
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/GarethBlain/Github-Clone-to-Sourcetree-Button
URL de la Page d'Aide https://github.com/GarethBlain/Github-Clone-to-Sourcetree-Button/issues
Langues Prises en Charge 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"
    ]
}