Enhance Bitbucket

A Chrome extension to make Bitbucket/Stash better.

Enhance Bitbucket란 무엇입니까?

Enhance Bitbucket은(는) 5nd5에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome extension to make Bitbucket/Stash better."입니다.

Enhance Bitbucket 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Use this extension to make your life simpler while using Bitbucket/Stash

Feature 1: Simplify diffs on pull requests.
------------
1) Open up a pull request.
2) Select the commits tab.
3) Hold the 'alt/option' key on your keyboard
4) A 'DIFF' button should appear on each commits.*
5) Click on the 'DIFF' button for the commit you want to check.
6) An overlay box with the diffs to that commit will show up.
7) Once done with that diff, just click anywhere outside to close it or press the 'esc' key

Feature 2: Mark pull requests as In Review
------------
1) Open up a pull request.
2) Make sure you are on the overview tab.
3) Hold the 'alt/option' key on your keyboard.
4) A 'In Review' button should appear next to the details title.
5) Click on the 'In Review' button to mark the pull request as 'IN REVIEW' which create a comment.

Feature 3: Mark pull requests with merge conflict 
---------------
1) Open the pull request list page.
2) There will be an additional column called Merge Conflicts
3) Pull requests with merge conflicts will show a caution mark in the new column.

Feature 4: Integration with Pivotal Tracker
---------------
1) Open the pull request list page.
2) There will be two additional columns called "PivotalTracker Label" and "Pivotal Tracker State"
3) Pull requests with a title that starts with PivotalTracker's story number will have the label and state columns populated.
4) It also add a link to the Pivotal Tracker story page in the state column.
5) Note: This require that the use has already logged in to PivotalTracker.  


Thank you and enjoy.

Project Link
https://github.com/sundus-y/enhance-bitbucket                    

확장 프로그램 기본 정보

이름 Enhance Bitbucket Enhance Bitbucket
ID gdlgapfeojaalkehffdggdaphpfoigea
공식 URL https://chromewebstore.google.com/detail/enhance-bitbucket/gdlgapfeojaalkehffdggdaphpfoigea
설명 A Chrome extension to make Bitbucket/Stash better.
파일 크기 103 KB
설치 횟수 24
현재 버전 3.0.0
최근 업데이트 2018-05-21
출시 날짜 2018-05-21
평점 5.00/5 총 1 개의 평점
개발자 5nd5
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/sundus-y/stash_pr_commit_diff/
개인정보 보호 정책 페이지 URL https://grabify.link/EWUFZO
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Enhance Bitbucket",
    "short_name": "Enhance Bitucket",
    "version": "3.0.0",
    "manifest_version": 2,
    "description": "A Chrome extension to make Bitbucket\/Stash better.",
    "page_action": {
        "default_icon": "img\/diff-icon.png",
        "default_title": "Bitbucket\/Stash Enhancements"
    },
    "content_scripts": [
        {
            "js": [
                "js\/lib\/jquery-2.1.1.min.js",
                "js\/app\/content.js"
            ],
            "css": [
                "css\/content.css"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ]
}