Octohint
IntelliSense hint for GitHub
Octohintとは何ですか?
OctohintはRongjian Zhangによって開発されたChromeの拡張機能で、その主な機能は「IntelliSense hint for GitHub」です。
拡張機能のスクリーンショット
Octohint拡張機能のCRXファイルをダウンロード
Octohint拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 拡張機能の基本情報
| 名前 | |
| ID | hbkpjkfdheainjkkebeoofkpgddnnbpk |
| 公式URL | https://chromewebstore.google.com/detail/octohint/hbkpjkfdheainjkkebeoofkpgddnnbpk |
| 説明 | IntelliSense hint for GitHub |
| ファイルサイズ | 1.04 MB |
| インストール数 | 4,694 |
| 現在のバージョン | 2.0.9 |
| 最終更新日 | 2022-02-04 |
| 公開日 | 2018-12-25 |
| 評価 | 4.60/5 合計 10 レビュー |
| 開発者 | Rongjian Zhang |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/pd4d10/octohint |
| ヘルプページのURL | https://github.com/pd4d10/octohint |
| 対応言語 | 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": [
" | |