Go Search Extension

Search Golang std docs and third packages in your address bar instantly!

Go Search Extension란 무엇입니까?

Go Search Extension은(는) huhu.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Search Golang std docs and third packages in your address bar instantly!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Go Search Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Golang Search is a handy browser plugin to help the Golang developers searching standard docs and libraries in the address bar instantly.

We believe that your privacy is a fundamental right, hence using Golang Search will never come at the expense of your privacy.

⭐️ Features
- Search Golang standard library docs
- Search Golang libraries on https://pkg.go.dev

⭐️ How to use it
Input keyword `go` in the address bar, press `Space` to activate the search bar. Then enter any keyword to search, the extension will response the related search results instantly.

Github: https://github.com/huhu/go-search-extension
Privacy policy: https://github.com/huhu/privacy-policies/blob/master/privacy/go-search-extension.md

Should you have any feedback or suggestion, please send your message to [email protected]. We love users like you!                    

확장 프로그램 기본 정보

이름 Go Search Extension Go Search Extension
ID epanejkfcekejmmfbcpbcbigfpefbnlb
공식 URL https://chromewebstore.google.com/detail/go-search-extension/epanejkfcekejmmfbcpbcbigfpefbnlb
설명 Search Golang std docs and third packages in your address bar instantly!
파일 크기 685 KB
설치 횟수 1,055
현재 버전 0.2
최근 업데이트 2020-07-03
출시 날짜 2020-07-02
평점 4.00/5 총 1 개의 평점
개발자 huhu.io
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/huhu/go-search-extension
도움말 페이지 URL https://github.com/huhu/go-search-extension/issues
개인정보 보호 정책 페이지 URL https://huhu.io/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "core\/compat.js",
            "core\/omnibox.js",
            "core\/command\/base.js",
            "core\/command\/simple.js",
            "core\/command\/history.js",
            "core\/command\/manager.js",
            "index\/godocs.js",
            "index\/packages.js",
            "index\/awesome.js",
            "index\/others.js",
            "search\/docs.js",
            "search\/package.js",
            "search\/awesome.js",
            "command\/help.js",
            "main.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "128": "icon.png",
            "16": "icon.png",
            "48": "icon.png"
        },
        "default_popup": "popup\/index.html",
        "default_title": "Search Golang std docs and third packages in your address bar instantly!"
    },
    "content_scripts": [],
    "content_security_policy": "script-src 'self'; object-src 'self';",
    "description": "Search Golang std docs and third packages in your address bar instantly!",
    "icons": {
        "128": "icon.png",
        "16": "icon.png",
        "48": "icon.png"
    },
    "manifest_version": 2,
    "name": "Go Search Extension",
    "omnibox": {
        "keyword": "go"
    },
    "permissions": [
        "tabs"
    ],
    "version": "0.2",
    "web_accessible_resources": []
}