TortoiseBucket
Add a TortoiseGit clone button to BitBucket and PR common issue assistance.
Wat is TortoiseBucket?
TortoiseBucket is een Chrome-extensie ontwikkeld door Evan Knowles, en de belangrijkste functie is "Add a TortoiseGit clone button to BitBucket and PR common issue assistance.".
Extensie Screenshots
Download het CRX-bestand van de extensie TortoiseBucket
Download TortoiseBucket-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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).
Basisinformatie over de Extensie
Naam | |
ID | fhldifodgnlnljaombiokkinkbfialfl |
Officiële URL | https://chromewebstore.google.com/detail/tortoisebucket/fhldifodgnlnljaombiokkinkbfialfl |
Beschrijving | Add a TortoiseGit clone button to BitBucket and PR common issue assistance. |
Bestandsgrootte | 80.56 KB |
Aantal Installaties | 59 |
Huidige Versie | 1.5 |
Laatst Bijgewerkt | 2019-09-02 |
Publicatiedatum | 2019-09-02 |
Beoordeling | 4.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Evan Knowles |
Betalingswijze | free |
Extensiewebsite | http://www.knowles.co.za |
Ondersteunde Talen | 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" ] } |