Review on GitHub

Review repositories on GitHub like a Pull Request

Vad är Review on GitHub?

Review on GitHub är en Chrome-tillägg utvecklad av Sebastian Gräßl, och dess huvudfunktion är "Review repositories on GitHub like a Pull Request".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Review on GitHub-förlängningens CRX-fil

Ladda ner Review on GitHub-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Review on GitHub Review on GitHub
ID eenlonmglmdookfbknbmcgjkpomndjdp
Officiell webbadress https://chromewebstore.google.com/detail/review-on-github/eenlonmglmdookfbknbmcgjkpomndjdp
Beskrivning Review repositories on GitHub like a Pull Request
Filstorlek 25.81 KB
Antal Installationer 115
Aktuell Version 1.0.1
Senast Uppdaterad 2016-05-12
Publiceringsdatum 2016-05-12
Utvecklare Sebastian Gräßl
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/bastilian/ReviewOnGitHub
Hjälpsida URL https://github.com/bastilian/ReviewOnGitHub/issues
Stödda Språk 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"
            ]
        }
    ]
}