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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |