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…

Was ist Better Pull Requests?

Better Pull Requests ist eine Chrome-Erweiterung, die von gordon entwickelt wurde, und ihr Hauptmerkmal ist "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-Erweiterungs-CRX-Datei herunterladen

Laden Sie Better Pull Requests-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Better Pull Requests Better Pull Requests
ID ioaepkkioliomgmnhkgkhcdoofgihhcc
Offizielle URL https://chrome.google.com/webstore/detail/better-pull-requests/ioaepkkioliomgmnhkgkhcdoofgihhcc
Beschreibung Better Pull Requests is a simple Chrome extension that adds a few niceties to GitHub and Bitbucket diff views. The main idea is…
Dateigröße 83.2 KB
Installationsanzahl 34
Aktuelle Version 1.0.0
Letztes Update 2017-07-03
Veröffentlichungsdatum 2017-07-03
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler gordon
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/sproutsocial/github-diff-collapse
Unterstützte Sprachen 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"
            ]
        }
    ]
}