Github Code Review

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

Hvad er Github Code Review?

Github Code Review er en Chrome-udvidelse udviklet af Ecky Putrady, og dens hovedfunktion er "Github Code Review is a Chrome extension that lets you do code review easily on top of github pull request".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Github Code Review-udvidelses-CRX-fil

Download Github Code Review-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Github Code Review Github Code Review
ID pgdgcfbmpimnnafmejbbgodlijodgppk
Officiel URL https://chromewebstore.google.com/detail/github-code-review/pgdgcfbmpimnnafmejbbgodlijodgppk
Beskrivelse Github Code Review is a Chrome extension that lets you do code review easily on top of github pull request
Filstørrelse 83.14 KB
Antal Installationer 125
Nuværende Version 1.0.0
Senest Opdateret 2015-02-09
Udgivelsesdato 2015-02-08
Udvikler Ecky Putrady
Betalingsmetode free
Udvidelseswebsted https://github.com/eckyputrady/github-pr-approver
Hjælpeside-URL https://github.com/eckyputrady/github-pr-approver/issues
Understøttede Sprog 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
        }
    ]
}