bitbucket-companion

a companion for bitbucket

bitbucket-companion란 무엇입니까?

bitbucket-companion은(는) Benjamin Santalucia에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "a companion for bitbucket"입니다.

확장 프로그램 스크린샷

screenshot

bitbucket-companion 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A little companion for atlassian bitbucket server.  

- Shows badge to let you know how many pull requests are waiting your approval.  
- Gives a dashboard view with recent pull requests changes.  
- Tracks comments you may have to read.  
- Automatically delete approval when an approved pull request changes.  
- Notify you when you have pull requests pending for reviews  
- Keep itself up to date with bitbuket server
- Allow to sort in the branches view
  
Note: This require Bitbucket REST API to be enabled.

CHANGELOG:
1.5.+
 - Fix hammering of bitbucket server
 - Allow to disable the automatic remove of approval

1.3.+
 - Handle server error and notify when there are credentials issues
 - Update Icon (red when error, blue otherwise)
 - Show latest notification details inside the icon tooltip

1.2.+
- Allow to show/hide some PR states (like not showing already merged PR)
- Allow to disable notifications                    

확장 프로그램 기본 정보

이름 bitbucket-companion bitbucket-companion
ID nnbhbicafgeplheikeiinpiaihcdegap
공식 URL https://chromewebstore.google.com/detail/bitbucket-companion/nnbhbicafgeplheikeiinpiaihcdegap
설명 a companion for bitbucket
파일 크기 52.89 KB
설치 횟수 23
현재 버전 1.5.3
최근 업데이트 2018-10-17
출시 날짜 2018-10-17
평점 5.00/5 총 1 개의 평점
개발자 Benjamin Santalucia
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ben8p/chrome-extension-bitbucket-companion
도움말 페이지 URL https://github.com/ben8p/chrome-extension-bitbucket-companion
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "minimum_chrome_version": "50",
    "default_locale": "en",
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "alarms",
        "tabs",
        "notifications",
        "https:\/\/*\/",
        "http:\/\/*\/"
    ],
    "background": {
        "scripts": [
            "js\/events.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "all_frames": false,
            "run_at": "document_end",
            "js": [
                "js\/monitor.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "description": "a companion for bitbucket",
    "name": "bitbucket-companion",
    "version": "1.5.3"
}