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 |
官方網址 | 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" } } |