Go doc finder

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

Apa itu Go doc finder?

Go doc finder adalah ekstensi Chrome yang dikembangkan oleh siadat.dev, dan fitur utamanya adalah "Quickly find Go doc packages served in localhost:6060 or tip.golang.org".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Go doc finder

Unduh file ekstensi Go doc finder dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Go doc finder Go doc finder
ID ngfiehnpfcdmknddodaojcjpondamjcc
URL Resmi https://chromewebstore.google.com/detail/go-doc-finder/ngfiehnpfcdmknddodaojcjpondamjcc
Deskripsi Quickly find Go doc packages served in localhost:6060 or tip.golang.org
Ukuran File 5.18 KB
Jumlah Instalasi 31
Versi Saat Ini 0.4.0
Terakhir Diperbarui 2016-07-21
Tanggal Publikasi 2016-07-21
Penilaian 5.00/5 Total 3 Penilaian
Pengembang siadat.dev
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}