Go Doc Tooltip
Show go doc's function description as tooltip of function list
Qu'est-ce que Go Doc Tooltip ?
Go Doc Tooltip est une extension Chrome développée par butaixianran, et sa fonction principale est "Show go doc's function description as tooltip of function list".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Go Doc Tooltip
Téléchargez les fichiers d'extension Go Doc Tooltip au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Go Doc Tooltip |
ID | fjbnfgkjpcnhbhfdnegofefhgpjafjjl |
URL Officiel | https://chromewebstore.google.com/detail/go-doc-tooltip/fjbnfgkjpcnhbhfdnegofefhgpjafjjl |
Description | Show go doc's function description as tooltip of function list |
Taille du Fichier | 16.01 KB |
Nombre d'Installations | 100 |
Version Actuelle | 0.0.7 |
Dernière Mise à Jour | 2022-12-03 |
Date de Publication | 2020-04-20 |
Évaluation | 4.67/5 Total 3 Évaluations |
Développeur | butaixianran |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |