Go Doc Tooltip

Show go doc's function description as tooltip of function list

What is Go Doc Tooltip?

Go Doc Tooltip is a Chrome extension developed by butaixianran, and its main feature is "Show go doc's function description as tooltip of function list".

Extension Screenshots

screenshot

Download Go Doc Tooltip Extension CRX File

Download Go Doc Tooltip 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

                        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                    

Extension Basic Information

Name Go Doc Tooltip Go Doc Tooltip
ID fjbnfgkjpcnhbhfdnegofefhgpjafjjl
Official URL https://chromewebstore.google.com/detail/go-doc-tooltip/fjbnfgkjpcnhbhfdnegofefhgpjafjjl
Description Show go doc's function description as tooltip of function list
File Size 16.01 KB
Installation Count 100
Current Version 0.0.7
Last Updated 2022-12-03
Publish Date 2020-04-20
Rating 4.67/5 Total 3 Ratings
Developer butaixianran
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}