Go Doc Tooltip

Show go doc's function description as tooltip of function list

Co to jest Go Doc Tooltip?

Go Doc Tooltip to rozszerzenie Chrome opracowane przez butaixianran, a jego główną funkcją jest „Show go doc's function description as tooltip of function list”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Go Doc Tooltip

Pobierz pliki rozszerzeń Go Doc Tooltip w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Go Doc Tooltip Go Doc Tooltip
ID fjbnfgkjpcnhbhfdnegofefhgpjafjjl
Oficjalny URL https://chromewebstore.google.com/detail/go-doc-tooltip/fjbnfgkjpcnhbhfdnegofefhgpjafjjl
Opis Show go doc's function description as tooltip of function list
Rozmiar pliku 16.01 KB
Liczba instalacji 100
Aktualna Wersja 0.0.7
Ostatnia Aktualizacja 2022-12-03
Data Publikacji 2020-04-20
Ocena 4.67/5 Łącznie 3 Oceny
Deweloper butaixianran
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}