Go Doc Tooltip
Show go doc's function description as tooltip of function list
Go Doc Tooltipとは何ですか?
Go Doc Tooltipはbutaixianranによって開発されたChromeの拡張機能で、その主な機能は「Show go doc's function description as tooltip of function list」です。
拡張機能のスクリーンショット
Go Doc Tooltip拡張機能のCRXファイルをダウンロード
Go Doc Tooltip拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This is for golang users. When you're at official doc site, this extension will show function's description as tooltip on function list. So you don't need to scroll down that long list page anymore. Github: https://github.com/diankong/GoDocTooltip
拡張機能の基本情報
名前 | Go Doc Tooltip |
ID | fjbnfgkjpcnhbhfdnegofefhgpjafjjl |
公式URL | https://chromewebstore.google.com/detail/go-doc-tooltip/fjbnfgkjpcnhbhfdnegofefhgpjafjjl |
説明 | Show go doc's function description as tooltip of function list |
ファイルサイズ | 16.01 KB |
インストール数 | 100 |
現在のバージョン | 0.0.7 |
最終更新日 | 2022-12-03 |
公開日 | 2020-04-20 |
評価 | 4.67/5 合計 3 レビュー |
開発者 | butaixianran |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Go Doc Tooltip", "short_name": "gdt", "version": "0.0.7", "description": "Show go doc's function description as tooltip of function list", "author": "butaixianran", "icons": { "128": "icon_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/golang.org\/pkg\/*", "https:\/\/godoc.org\/*", "https:\/\/pkg.go.dev\/*" ], "js": [ "content.js" ] } ] } |