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 |
官方網址 | 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" ] } |