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 |
官方網址 | 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 |
電子郵箱 | [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" ] } ] } |