Go Doc Tooltip

Go Doc Tooltip

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

Additional files are visible only to premium users

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"
      ]
    }
  ]
}