Go doc finder

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

Cos'è Go doc finder?

Go doc finder è un'estensione di Chrome sviluppata da siadat.dev, e la sua funzione principale è "Quickly find Go doc packages served in localhost:6060 or tip.golang.org".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Go doc finder

Scarica i file di estensione Go doc finder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Go doc finder Go doc finder
ID ngfiehnpfcdmknddodaojcjpondamjcc
URL Ufficiale https://chromewebstore.google.com/detail/go-doc-finder/ngfiehnpfcdmknddodaojcjpondamjcc
Descrizione Quickly find Go doc packages served in localhost:6060 or tip.golang.org
Dimensione del File 5.18 KB
Conteggio Installazioni 31
Versione Corrente 0.4.0
Ultimo Aggiornamento 2016-07-21
Data di Pubblicazione 2016-07-21
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore siadat.dev
Tipo di Pagamento free
Lingue Supportate 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"
    }
}