Go Search Extension

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

Go Search Extensionคืออะไร?

Go Search Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย huhu.io และคุณลักษณะหลักของมันคือ "Search Golang std docs and third packages in your address bar instantly!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Go Search Extension

ดาวน์โหลดไฟล์ส่วนขยาย Go Search Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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": []
}