CodeNav (Github code navigation)
Navigate Github code easily.
What is CodeNav (Github code navigation)?
CodeNav (Github code navigation) is a Chrome extension developed by Ian Webster, and its main feature is "Navigate Github code easily.".
Extension Screenshots
Download CodeNav (Github code navigation) Extension CRX File
Download CodeNav (Github code navigation) 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
CodeNav makes it easier to explore code on Github. Features * Hover over a variable to highlight other references and visualize them on your scrollbar. * Click an object or variable to search for other instances in the same project.
Extension Basic Information
Name | CodeNav (Github code navigation) |
ID | nbgghbhaanommbapokejnmfdlddoacff |
Official URL | https://chromewebstore.google.com/detail/codenav-github-code-navig/nbgghbhaanommbapokejnmfdlddoacff |
Description | Navigate Github code easily. |
File Size | 76.79 KB |
Installation Count | 437 |
Current Version | 0.0.13 |
Last Updated | 2017-02-13 |
Publish Date | 2017-02-12 |
Rating | 4.20/5 Total 5 Ratings |
Developer | Ian Webster |
[email protected] | |
Payment Type | free |
Extension Website | http://ianww.com/codenav |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "CodeNav (Github code navigation)", "version": "0.0.13", "manifest_version": 2, "description": "Navigate Github code easily.", "homepage_url": "http:\/\/ianww.com\/codenav", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "permissions": [ "https:\/\/github.com\/*", "http:\/\/github.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "http:\/\/github.com\/*" ], "js": [ "src\/lib\/jquery.min.js", "src\/inject\/inject.js" ], "css": [ "src\/inject\/inject.css" ] } ] } |