Go doc finder

Quickly find Go doc packages served in localhost:6060 or tip.golang.org

What is Go doc finder?

Go doc finder is a Chrome extension developed by siadat.dev, and its main feature is "Quickly find Go doc packages served in localhost:6060 or tip.golang.org".

Extension Screenshots

screenshot

Download Go doc finder Extension CRX File

Download Go doc finder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        github.com/siadat/chrome-godoc

Search in Go docs and quickly find documentation for a package, function, or type.

Type 'go' followed by a package name and optionally followed by a function of type name. For example, try 'go http', or 'go httpu dump'.

Examples:

    go http
    go http new
    go http#new
    go #new
    go #

Clear the cache with:

    go !

See https://github.com/siadat/chrome-godoc for usage.                    

Extension Basic Information

Name Go doc finder Go doc finder
ID ngfiehnpfcdmknddodaojcjpondamjcc
Official URL https://chromewebstore.google.com/detail/go-doc-finder/ngfiehnpfcdmknddodaojcjpondamjcc
Description Quickly find Go doc packages served in localhost:6060 or tip.golang.org
File Size 5.18 KB
Installation Count 31
Current Version 0.4.0
Last Updated 2016-07-21
Publish Date 2016-07-21
Rating 5.00/5 Total 3 Ratings
Developer siadat.dev
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Go doc finder",
    "short_name": "go",
    "description": "Quickly find Go doc packages served in localhost:6060 or tip.golang.org",
    "version": "0.4.0",
    "author": "Sina Siadat ",
    "homepage_url": "https:\/\/github.com\/siadat\/chrome-godoc",
    "permissions": [
        "http:\/\/localhost:6060\/*",
        "https:\/\/tip.golang.org\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "omnibox": {
        "keyword": "go"
    },
    "icons": {
        "16": "go.png"
    }
}