Github Clone to Sourcetree Button
Add button to any github repo to clone it into SourceTree
What is Github Clone to Sourcetree Button?
Github Clone to Sourcetree Button is a Chrome extension developed by gareth.blain, and its main feature is "Add button to any github repo to clone it into SourceTree".
Extension Screenshots
Download Github Clone to Sourcetree Button Extension CRX File
Download Github Clone to Sourcetree Button extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Github Clone to Sourcetree Button |
ID | eopgibgcmlglaofajpkhoomnbdedijmb |
Official URL | https://chromewebstore.google.com/detail/github-clone-to-sourcetre/eopgibgcmlglaofajpkhoomnbdedijmb |
Description | Add button to any github repo to clone it into SourceTree |
File Size | 124 KB |
Installation Count | 66 |
Current Version | 1.0.1 |
Last Updated | 2020-10-01 |
Publish Date | 2020-03-29 |
Rating | 4.00/5 Total 2 Ratings |
Developer | gareth.blain |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/GarethBlain/Github-Clone-to-Sourcetree-Button |
Help Page URL | https://github.com/GarethBlain/Github-Clone-to-Sourcetree-Button/issues |
Supported Languages | 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" ] } |