Go Doc Tooltip

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

O que é Go Doc Tooltip?

Go Doc Tooltip é uma extensão do Chrome desenvolvida por butaixianran, e sua principal característica é "Show go doc's function description as tooltip of function list".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Go Doc Tooltip

Baixe arquivos de extensão Go Doc Tooltip no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Go Doc Tooltip Go Doc Tooltip
ID fjbnfgkjpcnhbhfdnegofefhgpjafjjl
URL Oficial https://chromewebstore.google.com/detail/go-doc-tooltip/fjbnfgkjpcnhbhfdnegofefhgpjafjjl
Descrição Show go doc's function description as tooltip of function list
Tamanho do Arquivo 16.01 KB
Contagem de Instalações 100
Versão Atual 0.0.7
Última Atualização 2022-12-03
Data de Publicação 2020-04-20
Classificação 4.67/5 Total de 3 Avaliações
Desenvolvedor butaixianran
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}