Go Doc Tooltip
Show go doc's function description as tooltip of function list
Wat is Go Doc Tooltip?
Go Doc Tooltip is een Chrome-extensie ontwikkeld door butaixianran, en de belangrijkste functie is "Show go doc's function description as tooltip of function list".
Extensie Screenshots
Download het CRX-bestand van de extensie Go Doc Tooltip
Download Go Doc Tooltip-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Go Doc Tooltip |
ID | fjbnfgkjpcnhbhfdnegofefhgpjafjjl |
Officiële URL | https://chromewebstore.google.com/detail/go-doc-tooltip/fjbnfgkjpcnhbhfdnegofefhgpjafjjl |
Beschrijving | Show go doc's function description as tooltip of function list |
Bestandsgrootte | 16.01 KB |
Aantal Installaties | 100 |
Huidige Versie | 0.0.7 |
Laatst Bijgewerkt | 2022-12-03 |
Publicatiedatum | 2020-04-20 |
Beoordeling | 4.67/5 Totaal 3 Beoordelingen |
Ontwikkelaar | butaixianran |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } ] } |