TortoiseBucket
Add a TortoiseGit clone button to BitBucket and PR common issue assistance.
Cos'è TortoiseBucket?
TortoiseBucket è un'estensione di Chrome sviluppata da Evan Knowles, e la sua funzione principale è "Add a TortoiseGit clone button to BitBucket and PR common issue assistance.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione TortoiseBucket
Scarica i file di estensione TortoiseBucket in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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).
Informazioni di Base sull'Estensione
Nome | |
ID | fhldifodgnlnljaombiokkinkbfialfl |
URL Ufficiale | https://chromewebstore.google.com/detail/tortoisebucket/fhldifodgnlnljaombiokkinkbfialfl |
Descrizione | Add a TortoiseGit clone button to BitBucket and PR common issue assistance. |
Dimensione del File | 80.56 KB |
Conteggio Installazioni | 59 |
Versione Corrente | 1.5 |
Ultimo Aggiornamento | 2019-09-02 |
Data di Pubblicazione | 2019-09-02 |
Valutazione | 4.00/5 Totale 1 Valutazioni |
Sviluppatore | Evan Knowles |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://www.knowles.co.za |
Lingue Supportate | 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" ] } |