Go Doc Tooltip

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

Cos'è Go Doc Tooltip?

Go Doc Tooltip è un'estensione di Chrome sviluppata da butaixianran, e la sua funzione principale è "Show go doc's function description as tooltip of function list".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Go Doc Tooltip

Scarica i file di estensione Go Doc Tooltip in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Go Doc Tooltip Go Doc Tooltip
ID fjbnfgkjpcnhbhfdnegofefhgpjafjjl
URL Ufficiale https://chromewebstore.google.com/detail/go-doc-tooltip/fjbnfgkjpcnhbhfdnegofefhgpjafjjl
Descrizione Show go doc's function description as tooltip of function list
Dimensione del File 16.01 KB
Conteggio Installazioni 100
Versione Corrente 0.0.7
Ultimo Aggiornamento 2022-12-03
Data di Pubblicazione 2020-04-20
Valutazione 4.67/5 Totale 3 Valutazioni
Sviluppatore butaixianran
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}