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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    }
}