TortoiseBucket
Add a TortoiseGit clone button to BitBucket and PR common issue assistance.
TortoiseBucketとは何ですか?
TortoiseBucketはEvan Knowlesによって開発されたChromeの拡張機能で、その主な機能は「Add a TortoiseGit clone button to BitBucket and PR common issue assistance.」です。
拡張機能のスクリーンショット
TortoiseBucket拡張機能のCRXファイルをダウンロード
TortoiseBucket拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
BitBucket is very Atlassian orientated (on account of having been written by them). SourceTree is a fine app, but sometimes you prefer having something a little bit lighter. TortoiseBucket adds a TortoiseGit clone button to the BitBucket interface, next to the SourceTree clone button in the Clone menu. In addition, functionality to provide common PR responses is available (no standard responses provided though).
拡張機能の基本情報
名前 | |
ID | fhldifodgnlnljaombiokkinkbfialfl |
公式URL | https://chromewebstore.google.com/detail/tortoisebucket/fhldifodgnlnljaombiokkinkbfialfl |
説明 | Add a TortoiseGit clone button to BitBucket and PR common issue assistance. |
ファイルサイズ | 80.56 KB |
インストール数 | 59 |
現在のバージョン | 1.5 |
最終更新日 | 2019-09-02 |
公開日 | 2019-09-02 |
評価 | 4.00/5 合計 1 レビュー |
開発者 | Evan Knowles |
支払い方法 | free |
拡張機能のウェブサイト | http://www.knowles.co.za |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "TortoiseBucket", "description": "Add a TortoiseGit clone button to BitBucket and PR common issue assistance.", "version": "1.5", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "onload.js" ] } ], "icons": { "128": "icon.png" }, "options_page": "options.html", "background": { "scripts": [ "context-menu.js" ] }, "permissions": [ "https:\/\/*\/", "http:\/\/*\/", "contextMenus", "storage" ] } |