Go doc finder

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

Wat is Go doc finder?

Go doc finder is een Chrome-extensie ontwikkeld door siadat.dev, en de belangrijkste functie is "Quickly find Go doc packages served in localhost:6060 or tip.golang.org".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Go doc finder

Download Go doc finder-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Go doc finder Go doc finder
ID ngfiehnpfcdmknddodaojcjpondamjcc
Officiële URL https://chromewebstore.google.com/detail/go-doc-finder/ngfiehnpfcdmknddodaojcjpondamjcc
Beschrijving Quickly find Go doc packages served in localhost:6060 or tip.golang.org
Bestandsgrootte 5.18 KB
Aantal Installaties 31
Huidige Versie 0.4.0
Laatst Bijgewerkt 2016-07-21
Publicatiedatum 2016-07-21
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar siadat.dev
Betalingswijze free
Ondersteunde Talen 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"
    }
}