Github Clone to Sourcetree Button
Add button to any github repo to clone it into SourceTree
Vad är Github Clone to Sourcetree Button?
Github Clone to Sourcetree Button är en Chrome-tillägg utvecklad av gareth.blain, och dess huvudfunktion är "Add button to any github repo to clone it into SourceTree".
Tilläggsskärmbilder
Ladda ner Github Clone to Sourcetree Button-förlängningens CRX-fil
Ladda ner Github Clone to Sourcetree Button-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | Github Clone to Sourcetree Button |
ID | eopgibgcmlglaofajpkhoomnbdedijmb |
Officiell webbadress | https://chromewebstore.google.com/detail/github-clone-to-sourcetre/eopgibgcmlglaofajpkhoomnbdedijmb |
Beskrivning | Add button to any github repo to clone it into SourceTree |
Filstorlek | 124 KB |
Antal Installationer | 66 |
Aktuell Version | 1.0.1 |
Senast Uppdaterad | 2020-10-01 |
Publiceringsdatum | 2020-03-29 |
Betyg | 4.00/5 Totalt 2 Betyg |
Utvecklare | gareth.blain |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/GarethBlain/Github-Clone-to-Sourcetree-Button |
Hjälpsida URL | https://github.com/GarethBlain/Github-Clone-to-Sourcetree-Button/issues |
Stödda Språk | 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" ] } |