Bitbucket code review

Improvements to Bitbucket and JIRA for easier code reviewing

Bitbucket code review란 무엇입니까?

Bitbucket code review은(는) Rene Saarsoo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Improvements to Bitbucket and JIRA for easier code reviewing"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Mark-as-read functionality for commits and parts of commits
in Bitbucket and JIRA.

- Mark commits as read/unread in both Bitbucket and JIRA
- Hide reviewed file diffs in bitbucket commit page
- Ignore commits of specified authors (configured in options)                    

확장 프로그램 기본 정보

이름 Bitbucket code review Bitbucket code review
ID odildldpegnccaajmpminocolianigjl
공식 URL https://chromewebstore.google.com/detail/bitbucket-code-review/odildldpegnccaajmpminocolianigjl
설명 Improvements to Bitbucket and JIRA for easier code reviewing
파일 크기 72.91 KB
설치 횟수 80
현재 버전 1.0
최근 업데이트 2016-04-27
출시 날짜 2016-04-27
개발자 Rene Saarsoo
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/nene/bitbucket-code-review
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bitbucket code review",
    "short_name": "Bitbucket CR",
    "description": "Improvements to Bitbucket and JIRA for easier code reviewing",
    "version": "1.0",
    "icons": {
        "128": "icons\/icon-128.png",
        "48": "icons\/icon-48.png",
        "16": "icons\/icon-16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/bitbucket.org\/*\/commits\/*"
            ],
            "js": [
                "dist\/bitbucket.js"
            ],
            "css": [
                "styles.css"
            ]
        },
        {
            "matches": [
                "https:\/\/*.atlassian.net\/browse\/*"
            ],
            "js": [
                "dist\/jira.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "storage"
    ]
}