Review on GitHub

Review repositories on GitHub like a Pull Request

Review on GitHubとは何ですか?

Review on GitHubはSebastian Gräßlによって開発されたChromeの拡張機能で、その主な機能は「Review repositories on GitHub like a Pull Request」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Review on GitHub拡張機能のCRXファイルをダウンロード

Review on GitHub拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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

拡張機能の基本情報

名前 Review on GitHub Review on GitHub
ID eenlonmglmdookfbknbmcgjkpomndjdp
公式URL https://chromewebstore.google.com/detail/review-on-github/eenlonmglmdookfbknbmcgjkpomndjdp
説明 Review repositories on GitHub like a Pull Request
ファイルサイズ 25.81 KB
インストール数 115
現在のバージョン 1.0.1
最終更新日 2016-05-12
公開日 2016-05-12
開発者 Sebastian Gräßl
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/bastilian/ReviewOnGitHub
ヘルプページのURL https://github.com/bastilian/ReviewOnGitHub/issues
対応言語 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"
            ]
        }
    ]
}