Github Clone to Sourcetree Button
Add button to any github repo to clone it into SourceTree
什么是Github Clone to Sourcetree Button?
Github Clone to Sourcetree Button是由gareth.blain开发的Chrome扩展程序,该扩展的主要功能是“Add button to any github repo to clone it into SourceTree”。
扩展截图
下载Github Clone to Sourcetree Button扩展crx文件
下载Github Clone to Sourcetree Button扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Github Clone to Sourcetree Button |
ID | eopgibgcmlglaofajpkhoomnbdedijmb |
官方URL | https://chromewebstore.google.com/detail/github-clone-to-sourcetre/eopgibgcmlglaofajpkhoomnbdedijmb |
简介 | Add button to any github repo to clone it into SourceTree |
文件大小 | 124 KB |
安装次数 | 66 |
当前版本 | 1.0.1 |
更新时间 | 2020-10-01 |
上架时间 | 2020-03-29 |
评分 | 4.00/5 共2次评分 |
开发者 | gareth.blain |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/GarethBlain/Github-Clone-to-Sourcetree-Button |
帮助页面URL | https://github.com/GarethBlain/Github-Clone-to-Sourcetree-Button/issues |
支持的语言 | 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" ] } |