Github Clone to Sourcetree Button
Add button to any github repo to clone it into SourceTree
Cos'è Github Clone to Sourcetree Button?
Github Clone to Sourcetree Button è un'estensione di Chrome sviluppata da gareth.blain, e la sua funzione principale è "Add button to any github repo to clone it into SourceTree".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Github Clone to Sourcetree Button
Scarica i file di estensione Github Clone to Sourcetree Button in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Github Clone to Sourcetree Button |
ID | eopgibgcmlglaofajpkhoomnbdedijmb |
URL Ufficiale | https://chromewebstore.google.com/detail/github-clone-to-sourcetre/eopgibgcmlglaofajpkhoomnbdedijmb |
Descrizione | Add button to any github repo to clone it into SourceTree |
Dimensione del File | 124 KB |
Conteggio Installazioni | 66 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2020-10-01 |
Data di Pubblicazione | 2020-03-29 |
Valutazione | 4.00/5 Totale 2 Valutazioni |
Sviluppatore | gareth.blain |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/GarethBlain/Github-Clone-to-Sourcetree-Button |
URL della Pagina di Aiuto | https://github.com/GarethBlain/Github-Clone-to-Sourcetree-Button/issues |
Lingue Supportate | 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" ] } |