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.”。

扩展截图

screenshot

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

扩展基本信息

名称 TortoiseBucket TortoiseBucket
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"
    ]
}