MDN Search
Use omnibox to search MDN Web Docs with autocomplete.
Wat is MDN Search?
MDN Search is een Chrome-extensie ontwikkeld door https://guokai.dev, en de belangrijkste functie is "Use omnibox to search MDN Web Docs with autocomplete.".
Extensie Screenshots
Download het CRX-bestand van de extensie MDN Search
Download MDN Search-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | MDN Search |
ID | pdiegkghjahhhikafojgcmflngomilki |
Officiële URL | https://chromewebstore.google.com/detail/mdn-search/pdiegkghjahhhikafojgcmflngomilki |
Beschrijving | Use omnibox to search MDN Web Docs with autocomplete. |
Bestandsgrootte | 15.12 KB |
Aantal Installaties | 128 |
Huidige Versie | 0.0.1 |
Laatst Bijgewerkt | 2022-07-09 |
Publicatiedatum | 2022-05-23 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | https://guokai.dev |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/hanguokai/mdn-search |
URL van de Privacybeleid Pagina | https://guokai.dev/privacy |
Ondersteunde Talen | 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" } } |