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
官方網址 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
電子郵箱 [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"
            ]
        }
    ]
}