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ファイルをダウンロード

Bitbucket code review拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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