Go Doc Tooltip
Show go doc's function description as tooltip of function list
Vad är Go Doc Tooltip?
Go Doc Tooltip är en Chrome-tillägg utvecklad av butaixianran, och dess huvudfunktion är "Show go doc's function description as tooltip of function list".
Tilläggsskärmbilder
Ladda ner Go Doc Tooltip-förlängningens CRX-fil
Ladda ner Go Doc Tooltip-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | Go Doc Tooltip |
ID | fjbnfgkjpcnhbhfdnegofefhgpjafjjl |
Officiell webbadress | https://chromewebstore.google.com/detail/go-doc-tooltip/fjbnfgkjpcnhbhfdnegofefhgpjafjjl |
Beskrivning | Show go doc's function description as tooltip of function list |
Filstorlek | 16.01 KB |
Antal Installationer | 100 |
Aktuell Version | 0.0.7 |
Senast Uppdaterad | 2022-12-03 |
Publiceringsdatum | 2020-04-20 |
Betyg | 4.67/5 Totalt 3 Betyg |
Utvecklare | butaixianran |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } ] } |