Better Pull Requests

Better Pull Requests is a simple Chrome extension that adds a few niceties to GitHub and Bitbucket diff views. The main idea is…

Better Pull Requestsとは何ですか?

Better Pull Requestsはgordonによって開発されたChromeの拡張機能で、その主な機能は「Better Pull Requests is a simple Chrome extension that adds a few niceties to GitHub and Bitbucket diff views. The main idea is…」です。

Better Pull Requests拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        Better Pull Requests is a simple Chrome extension that adds a few niceties to GitHub and Bitbucket diff views. The main idea is that it allows you to collapse the diff for a file to make the page easier to navigate. It also adds the ability to hide comments in Bitbucket diffs.

More info can be found in the GitHub repo: https://github.com/sproutsocial/github-diff-collapse                    

拡張機能の基本情報

名前 Better Pull Requests Better Pull Requests
ID ioaepkkioliomgmnhkgkhcdoofgihhcc
公式URL https://chrome.google.com/webstore/detail/better-pull-requests/ioaepkkioliomgmnhkgkhcdoofgihhcc
説明 Better Pull Requests is a simple Chrome extension that adds a few niceties to GitHub and Bitbucket diff views. The main idea is…
ファイルサイズ 83.2 KB
インストール数 34
現在のバージョン 1.0.0
最終更新日 2017-07-03
公開日 2017-07-03
評価 5.00/5 合計 3 レビュー
開発者 gordon
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/sproutsocial/github-diff-collapse
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Better Pull Requests",
    "version": "1.0.0",
    "permissions": [
        "storage",
        ""
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "jquery.livequery.js",
                "helpers.js",
                "github.js",
                "gitlab.js",
                "bitbucket.js"
            ],
            "css": [
                "github.css",
                "gitlab.css",
                "bitbucket.css"
            ]
        }
    ]
}