Review on GitHub

Review repositories on GitHub like a Pull Request

Co to jest Review on GitHub?

Review on GitHub to rozszerzenie Chrome opracowane przez Sebastian Gräßl, a jego główną funkcją jest „Review repositories on GitHub like a Pull Request”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Review on GitHub

Pobierz pliki rozszerzeń Review on GitHub 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

                        This extension adds the ability to github.com to make notes in files and add them as a compiled list to an issue.                    

Podstawowe informacje o rozszerzeniu

Nazwa Review on GitHub Review on GitHub
ID eenlonmglmdookfbknbmcgjkpomndjdp
Oficjalny URL https://chromewebstore.google.com/detail/review-on-github/eenlonmglmdookfbknbmcgjkpomndjdp
Opis Review repositories on GitHub like a Pull Request
Rozmiar pliku 25.81 KB
Liczba instalacji 115
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2016-05-12
Data Publikacji 2016-05-12
Deweloper Sebastian Gräßl
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/bastilian/ReviewOnGitHub
Adres URL Strony Pomocy https://github.com/bastilian/ReviewOnGitHub/issues
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Review on GitHub",
    "description": "Review repositories on GitHub like a Pull Request",
    "version": "1.0.1",
    "icons": {
        "256": "icon.png"
    },
    "permissions": [
        "https:\/\/github.com\/*"
    ],
    "web_accessible_resources": [
        "vendor\/marked.min.js",
        "components\/notes-button.js",
        "components\/note-link.js",
        "components\/file-view.js",
        "components\/note-form.js",
        "components\/line-note.js",
        "components\/notes-list.js",
        "lib.js",
        "db.js",
        "review.js",
        "review.css"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "css": [
                "review.css"
            ],
            "js": [
                "inject.js"
            ]
        }
    ]
}