MDN Search
Use omnibox to search MDN Web Docs with autocomplete.
What is MDN Search?
MDN Search is a Chrome extension developed by https://guokai.dev, and its main feature is "Use omnibox to search MDN Web Docs with autocomplete.".
Extension Screenshots
Download MDN Search Extension CRX File
Download MDN Search extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | MDN Search |
ID | pdiegkghjahhhikafojgcmflngomilki |
Official URL | https://chromewebstore.google.com/detail/mdn-search/pdiegkghjahhhikafojgcmflngomilki |
Description | Use omnibox to search MDN Web Docs with autocomplete. |
File Size | 15.12 KB |
Installation Count | 128 |
Current Version | 0.0.1 |
Last Updated | 2022-07-09 |
Publish Date | 2022-05-23 |
Rating | 5.00/5 Total 2 Ratings |
Developer | https://guokai.dev |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/hanguokai/mdn-search |
Privacy Policy Page URL | https://guokai.dev/privacy |
Supported Languages | 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" } } |