Octohint
IntelliSense hint for GitHub
What is Octohint?
Octohint is a Chrome extension developed by Rongjian Zhang, and its main feature is "IntelliSense hint for GitHub".
Extension Screenshots
Download Octohint Extension CRX File
Download Octohint 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
Octohint adds IntelliSense hint to GitHub. With Octohint installed, when you view code at GitHub (For example this demo), you'll get features as follows: - Mouse Hover: Show information of current token - Left Click: Show all references of current token - [⌘] + Click: Go to definition of current token (For Windows and Linux user, use [Ctrl] instead) Octohint is a pure client thing. All code analysis are performed at your browser, which means your code and actions log like click, mousemove will never be sent to any server. Source code: https://github.com/pd4d10/octohint Report issues: https://github.com/pd4d10/octohint/issues/new
Extension Basic Information
Name | Octohint |
ID | hbkpjkfdheainjkkebeoofkpgddnnbpk |
Official URL | https://chromewebstore.google.com/detail/octohint/hbkpjkfdheainjkkebeoofkpgddnnbpk |
Description | IntelliSense hint for GitHub |
File Size | 1.04 MB |
Installation Count | 4,694 |
Current Version | 2.0.9 |
Last Updated | 2022-02-04 |
Publish Date | 2018-12-25 |
Rating | 4.60/5 Total 10 Ratings |
Developer | Rongjian Zhang |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/pd4d10/octohint |
Help Page URL | https://github.com/pd4d10/octohint |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Octohint", "version": "2.0.9", "description": "IntelliSense hint for GitHub", "homepage_url": "https:\/\/github.com\/pd4d10\/octohint", "icons": { "128": "icons\/logo.png" }, "background": { "scripts": [ "dist\/background.js" ], "persistent": false }, "permissions": [ "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*", "https:\/\/gitlab.com\/*", "https:\/\/bitbucket.org\/*" ], "optional_permissions": [ " |