Github Code Review

Github Code Review is a Chrome extension that lets you do code review easily on top of github pull request

Co to jest Github Code Review?

Github Code Review to rozszerzenie Chrome opracowane przez Ecky Putrady, a jego główną funkcją jest „Github Code Review is a Chrome extension that lets you do code review easily on top of github pull request”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Github Code Review

Pobierz pliki rozszerzeń Github Code Review 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

                        Code review becomes easier with Github Code Review.

Github Code Review is a Chrome Extension that act as a lightweight code review tool on top of Github Pull Request. It let's you approve pull request and see who has approved each pull request easily.

Approve pull request by commenting with the following keywords/emojis:

- :+1:
- :shipit:
- verified
- approve                    

Podstawowe informacje o rozszerzeniu

Nazwa Github Code Review Github Code Review
ID pgdgcfbmpimnnafmejbbgodlijodgppk
Oficjalny URL https://chromewebstore.google.com/detail/github-code-review/pgdgcfbmpimnnafmejbbgodlijodgppk
Opis Github Code Review is a Chrome extension that lets you do code review easily on top of github pull request
Rozmiar pliku 83.14 KB
Liczba instalacji 125
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2015-02-09
Data Publikacji 2015-02-08
Deweloper Ecky Putrady
Typ Płatności free
Strona Rozszerzenia https://github.com/eckyputrady/github-pr-approver
Adres URL Strony Pomocy https://github.com/eckyputrady/github-pr-approver/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Code Review",
    "version": "1.0.0",
    "manifest_version": 2,
    "description": "Github Code Review is a Chrome extension that lets you do code review easily on top of github pull request",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}