Go Doc Tooltip
Show go doc's function description as tooltip of function list
Hvad er Go Doc Tooltip?
Go Doc Tooltip er en Chrome-udvidelse udviklet af butaixianran, og dens hovedfunktion er "Show go doc's function description as tooltip of function list".
Udvidelsesskærmbilleder
Download Go Doc Tooltip-udvidelses-CRX-fil
Download Go Doc Tooltip-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Go Doc Tooltip |
ID | fjbnfgkjpcnhbhfdnegofefhgpjafjjl |
Officiel URL | https://chromewebstore.google.com/detail/go-doc-tooltip/fjbnfgkjpcnhbhfdnegofefhgpjafjjl |
Beskrivelse | Show go doc's function description as tooltip of function list |
Filstørrelse | 16.01 KB |
Antal Installationer | 100 |
Nuværende Version | 0.0.7 |
Senest Opdateret | 2022-12-03 |
Udgivelsesdato | 2020-04-20 |
Bedømmelse | 4.67/5 Samlet 3 Bedømmelser |
Udvikler | butaixianran |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } ] } |