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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}