Github Clone to Sourcetree Button

Add button to any github repo to clone it into SourceTree

Hvad er Github Clone to Sourcetree Button?

Github Clone to Sourcetree Button er en Chrome-udvidelse udviklet af gareth.blain, og dens hovedfunktion er "Add button to any github repo to clone it into SourceTree".

Udvidelsesskærmbilleder

screenshot

Download Github Clone to Sourcetree Button-udvidelses-CRX-fil

Download Github Clone to Sourcetree Button-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Github Clone to Sourcetree Button Github Clone to Sourcetree Button
ID eopgibgcmlglaofajpkhoomnbdedijmb
Officiel URL https://chromewebstore.google.com/detail/github-clone-to-sourcetre/eopgibgcmlglaofajpkhoomnbdedijmb
Beskrivelse Add button to any github repo to clone it into SourceTree
Filstørrelse 124 KB
Antal Installationer 66
Nuværende Version 1.0.1
Senest Opdateret 2020-10-01
Udgivelsesdato 2020-03-29
Bedømmelse 4.00/5 Samlet 2 Bedømmelser
Udvikler gareth.blain
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/GarethBlain/Github-Clone-to-Sourcetree-Button
Hjælpeside-URL https://github.com/GarethBlain/Github-Clone-to-Sourcetree-Button/issues
Understøttede Sprog 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"
    ]
}