Github Clone to Sourcetree Button
Add button to any github repo to clone it into SourceTree
Wat is Github Clone to Sourcetree Button?
Github Clone to Sourcetree Button is een Chrome-extensie ontwikkeld door gareth.blain, en de belangrijkste functie is "Add button to any github repo to clone it into SourceTree".
Extensie Screenshots
Download het CRX-bestand van de extensie Github Clone to Sourcetree Button
Download Github Clone to Sourcetree Button-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Github Clone to Sourcetree Button |
ID | eopgibgcmlglaofajpkhoomnbdedijmb |
Officiële URL | https://chromewebstore.google.com/detail/github-clone-to-sourcetre/eopgibgcmlglaofajpkhoomnbdedijmb |
Beschrijving | Add button to any github repo to clone it into SourceTree |
Bestandsgrootte | 124 KB |
Aantal Installaties | 66 |
Huidige Versie | 1.0.1 |
Laatst Bijgewerkt | 2020-10-01 |
Publicatiedatum | 2020-03-29 |
Beoordeling | 4.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | gareth.blain |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/GarethBlain/Github-Clone-to-Sourcetree-Button |
Help Pagina-URL | https://github.com/GarethBlain/Github-Clone-to-Sourcetree-Button/issues |
Ondersteunde Talen | 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" ] } |