GitHub Reviewer
Make code review easier in GitHub.
GitHub Reviewerとは何ですか?
GitHub ReviewerはauiWorksによって開発されたChromeの拡張機能で、その主な機能は「Make code review easier in GitHub.」です。
拡張機能のスクリーンショット
GitHub Reviewer拡張機能のCRXファイルをダウンロード
GitHub Reviewer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Features: - Fold/expand files in GitHub Pull Request's "Files Changed" - Auto fold file which matches patterns defined Ideas: - Stars Management GitHub Repository: https://github.com/auiWorks/GitHub-Reviewer
拡張機能の基本情報
名前 | GitHub Reviewer |
ID | cgkhabhmjiofemilijihohcgbiachdgm |
公式URL | https://chromewebstore.google.com/detail/github-reviewer/cgkhabhmjiofemilijihohcgbiachdgm |
説明 | Make code review easier in GitHub. |
ファイルサイズ | 65.36 KB |
インストール数 | 27 |
現在のバージョン | 0.0.6 |
最終更新日 | 2014-01-29 |
公開日 | 2014-01-28 |
評価 | 3.50/5 合計 2 レビュー |
開発者 | auiWorks |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/auiWorks/GitHub-Reviewer |
ヘルプページのURL | https://github.com/auiWorks/GitHub-Reviewer/issues |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "icons": { "128": "image\/icon128.png" }, "version": "0.0.6", "minimum_chrome_version": "22", "options_page": "settings.html", "content_scripts": [ { "matches": [ "*:\/\/github.com\/*\/pull\/*" ], "css": [ "style\/content\/pull.css" ], "js": [ "script\/lib\/jquery.min.js", "script\/content\/pull.js" ], "run_at": "document_end" } ], "permissions": [ "storage", "*:\/\/github.com\/*\/pull\/*" ], "content_security_policy": "script-src 'self' https:\/\/apis.google.com https:\/\/platform.twitter.com; object-src 'self'" } |