Review on GitHub
Review repositories on GitHub like a Pull Request
What is Review on GitHub?
Review on GitHub is a Chrome extension developed by Sebastian Gräßl, and its main feature is "Review repositories on GitHub like a Pull Request".
Extension Screenshots
Download Review on GitHub Extension CRX File
Download Review on GitHub 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
This extension adds the ability to github.com to make notes in files and add them as a compiled list to an issue.
Extension Basic Information
Name | |
ID | eenlonmglmdookfbknbmcgjkpomndjdp |
Official URL | https://chromewebstore.google.com/detail/review-on-github/eenlonmglmdookfbknbmcgjkpomndjdp |
Description | Review repositories on GitHub like a Pull Request |
File Size | 25.81 KB |
Installation Count | 115 |
Current Version | 1.0.1 |
Last Updated | 2016-05-12 |
Publish Date | 2016-05-12 |
Developer | Sebastian Gräßl |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/bastilian/ReviewOnGitHub |
Help Page URL | https://github.com/bastilian/ReviewOnGitHub/issues |
Supported Languages | 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" ] } ] } |