GitHub Reviewer
Make code review easier in GitHub.
What is GitHub Reviewer?
GitHub Reviewer is a Chrome extension developed by auiWorks, and its main feature is "Make code review easier in GitHub.".
Extension Screenshots
Download GitHub Reviewer Extension CRX File
Download GitHub Reviewer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | GitHub Reviewer |
ID | cgkhabhmjiofemilijihohcgbiachdgm |
Official URL | https://chromewebstore.google.com/detail/github-reviewer/cgkhabhmjiofemilijihohcgbiachdgm |
Description | Make code review easier in GitHub. |
File Size | 65.36 KB |
Installation Count | 27 |
Current Version | 0.0.6 |
Last Updated | 2014-01-29 |
Publish Date | 2014-01-28 |
Rating | 3.50/5 Total 2 Ratings |
Developer | auiWorks |
Payment Type | free |
Extension Website | https://github.com/auiWorks/GitHub-Reviewer |
Help Page URL | https://github.com/auiWorks/GitHub-Reviewer/issues |
Supported Languages | 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'" } |