Go Doc Tooltip
Show go doc's function description as tooltip of function list
Apa itu Go Doc Tooltip?
Go Doc Tooltip adalah ekstensi Chrome yang dikembangkan oleh butaixianran, dan fitur utamanya adalah "Show go doc's function description as tooltip of function list".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Go Doc Tooltip
Unduh file ekstensi Go Doc Tooltip dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Go Doc Tooltip |
ID | fjbnfgkjpcnhbhfdnegofefhgpjafjjl |
URL Resmi | https://chromewebstore.google.com/detail/go-doc-tooltip/fjbnfgkjpcnhbhfdnegofefhgpjafjjl |
Deskripsi | Show go doc's function description as tooltip of function list |
Ukuran File | 16.01 KB |
Jumlah Instalasi | 100 |
Versi Saat Ini | 0.0.7 |
Terakhir Diperbarui | 2022-12-03 |
Tanggal Publikasi | 2020-04-20 |
Penilaian | 4.67/5 Total 3 Penilaian |
Pengembang | butaixianran |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } ] } |