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 |
Eメール | [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" } } |