Go doc finder

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

什麼是Go doc finder?

Go doc finder是由siadat.dev開發的Chrome擴展程式,該擴展的主要功能是“Quickly find Go doc packages served in localhost:6060 or tip.golang.org”。

擴展截圖

screenshot

下載Go doc finder擴展crx文件

下載Go doc finder擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Go doc finder Go doc finder
ID ngfiehnpfcdmknddodaojcjpondamjcc
官方網址 https://chromewebstore.google.com/detail/go-doc-finder/ngfiehnpfcdmknddodaojcjpondamjcc
簡介 Quickly find Go doc packages served in localhost:6060 or tip.golang.org
檔案大小 5.18 KB
安裝次數 31
目前版本 0.4.0
更新時間 2016-07-21
上架時間 2016-07-21
評分 5.00/5 共 3 次評分
開發者 siadat.dev
付費類型 free
支援的語言 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"
    }
}