TortoiseBucket

Add a TortoiseGit clone button to BitBucket and PR common issue assistance.

What is TortoiseBucket?

TortoiseBucket is a Chrome extension developed by Evan Knowles, and its main feature is "Add a TortoiseGit clone button to BitBucket and PR common issue assistance.".

Extension Screenshots

screenshot

Download TortoiseBucket Extension CRX File

Download TortoiseBucket extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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).                    

Extension Basic Information

Name TortoiseBucket TortoiseBucket
ID fhldifodgnlnljaombiokkinkbfialfl
Official URL https://chromewebstore.google.com/detail/tortoisebucket/fhldifodgnlnljaombiokkinkbfialfl
Description Add a TortoiseGit clone button to BitBucket and PR common issue assistance.
File Size 80.56 KB
Installation Count 59
Current Version 1.5
Last Updated 2019-09-02
Publish Date 2019-09-02
Rating 4.00/5 Total 1 Ratings
Developer Evan Knowles
Payment Type free
Extension Website http://www.knowles.co.za
Supported Languages 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"
    ]
}