MDN Search
Use omnibox to search MDN Web Docs with autocomplete.
什么是MDN Search?
MDN Search是由https://guokai.dev开发的Chrome扩展程序,该扩展的主要功能是“Use omnibox to search MDN Web Docs with autocomplete.”。
扩展截图
下载MDN Search扩展crx文件
下载MDN Search扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
If you are a web developer, you certainly need to check MDN web docs frequently. This extension provides you with search suggestions for MDN web docs. You can goto a document directly by clicking a suggestion, instead of searching it on search engine first. How to use it? 1. Enter the keyword "mdn" in the browser address bar. 2. Then, press key "tab" or "space". 3. Enter the content you want to search, e.g. "array". Note: only English version search is supported. Source Code: https://github.com/hanguokai/mdn-search
扩展基本信息
名称 | MDN Search |
ID | pdiegkghjahhhikafojgcmflngomilki |
官方URL | https://chromewebstore.google.com/detail/mdn-search/pdiegkghjahhhikafojgcmflngomilki |
简介 | Use omnibox to search MDN Web Docs with autocomplete. |
文件大小 | 15.12 KB |
安装次数 | 128 |
当前版本 | 0.0.1 |
更新时间 | 2022-07-09 |
上架时间 | 2022-05-23 |
评分 | 5.00/5 共2次评分 |
开发者 | https://guokai.dev |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/hanguokai/mdn-search |
隐私政策页面URL | https://guokai.dev/privacy |
支持的语言 | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "description": "__MSG_extDescription__", "default_locale": "en", "version": "0.0.1", "author": "Guokai Han", "manifest_version": 3, "minimum_chrome_version": "102", "omnibox": { "keyword": "mdn" }, "permissions": [ "alarms" ], "host_permissions": [ "https:\/\/developer.mozilla.org\/" ], "icons": { "192": "icon\/mdn_logo-192.png" }, "background": { "service_worker": "sw.js" } } |