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!”。
扩展截图
下载Go Search Extension扩展crx文件
下载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 |
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": [] } |