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 |
Eメール | [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" ] } |