Bitbucket Pull Request File Review
Mark individual files as reviewed in Bitbucket Pull Requests
Bitbucket Pull Request File Reviewとは何ですか?
Bitbucket Pull Request File Reviewはvandenberghe.jeroenによって開発されたChromeの拡張機能で、その主な機能は「Mark individual files as reviewed in Bitbucket Pull Requests」です。
拡張機能のスクリーンショット
Bitbucket Pull Request File Review拡張機能のCRXファイルをダウンロード
Bitbucket Pull Request File Review拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
                        With this extension you can mark individual files as reviewed. It can help you review (big) pull requests.
This extension brings you a fantastic feature of Github and an announced one for Bitbucket cloud: mark individual files of a pull request as reviewed.
This extension only works with the new beta pull request experience of Atlassian Bitbucket cloud. You can enable this feature via a lab.
We use the collapsible diffs feature as a way to mark files as reviewed and style them accordingly.                     拡張機能の基本情報
| 名前 |   |  
| ID | bllckhlhnfngflclpdalooiehmijjbaf | 
| 公式URL | https://chromewebstore.google.com/detail/bitbucket-pull-request-fi/bllckhlhnfngflclpdalooiehmijjbaf | 
| 説明 | Mark individual files as reviewed in Bitbucket Pull Requests | 
| ファイルサイズ | 6.92 KB | 
| インストール数 | 50 | 
| 現在のバージョン | 1.3 | 
| 最終更新日 | 2020-12-09 | 
| 公開日 | 2020-11-24 | 
| 評価 | 5.00/5 合計 1 レビュー | 
| 開発者 | vandenberghe.jeroen | 
| Eメール | [email protected] | 
| 支払い方法 | free | 
| 拡張機能のウェブサイト | https://github.com/JeroenVdb/bitbucket-pullrequest-file-review | 
| 対応言語 | en | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bitbucket Pull Request File Review",
    "version": "1.3",
    "description": "Mark individual files as reviewed in Bitbucket Pull Requests",
    "manifest_version": 2,
    "permissions": [
        "https:\/\/bitbucket.org\/*\/pull-requests\/*",
        "webNavigation",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/bitbucket.org\/*\/pull-requests\/*"
            ],
            "js": [
                "bb-pr-markfilesreviewed.js"
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}  |  |