Go Doc Tooltip
Show go doc's function description as tooltip of function list
Co je Go Doc Tooltip?
Go Doc Tooltip je rozšíření Chrome vyvinuté butaixianran, a jeho hlavní funkcí je „Show go doc's function description as tooltip of function list“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Go Doc Tooltip
Stáhněte si soubory rozšíření Go Doc Tooltip ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Go Doc Tooltip |
ID | fjbnfgkjpcnhbhfdnegofefhgpjafjjl |
Oficiální URL | https://chromewebstore.google.com/detail/go-doc-tooltip/fjbnfgkjpcnhbhfdnegofefhgpjafjjl |
Popis | Show go doc's function description as tooltip of function list |
Velikost souboru | 16.01 KB |
Počet instalací | 100 |
Aktuální Verze | 0.0.7 |
Poslední Aktualizace | 2022-12-03 |
Datum Vydání | 2020-04-20 |
Hodnocení | 4.67/5 Celkem 3 Hodnocení |
Vývojář | butaixianran |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" ] } ] } |