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”。

扩展截图

screenshot

下载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 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
电子邮箱 [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"
            ]
        }
    ]
}