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…

Co to jest Better Pull Requests?

Better Pull Requests to rozszerzenie Chrome opracowane przez gordon, a jego główną funkcją jest „Better Pull Requests is a simple Chrome extension that adds a few niceties to GitHub and Bitbucket diff views. The main idea is…”.

Pobierz plik CRX rozszerzenia Better Pull Requests

Pobierz pliki rozszerzeń Better Pull Requests w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Better Pull Requests Better Pull Requests
ID ioaepkkioliomgmnhkgkhcdoofgihhcc
Oficjalny URL https://chrome.google.com/webstore/detail/better-pull-requests/ioaepkkioliomgmnhkgkhcdoofgihhcc
Opis Better Pull Requests is a simple Chrome extension that adds a few niceties to GitHub and Bitbucket diff views. The main idea is…
Rozmiar pliku 83.2 KB
Liczba instalacji 34
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2017-07-03
Data Publikacji 2017-07-03
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper gordon
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/sproutsocial/github-diff-collapse
Obsługiwane Języki 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"
            ]
        }
    ]
}