MDN Search
Use omnibox to search MDN Web Docs with autocomplete.
Cos'è MDN Search?
MDN Search è un'estensione di Chrome sviluppata da https://guokai.dev, e la sua funzione principale è "Use omnibox to search MDN Web Docs with autocomplete.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione MDN Search
Scarica i file di estensione MDN Search in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | MDN Search |
ID | pdiegkghjahhhikafojgcmflngomilki |
URL Ufficiale | https://chromewebstore.google.com/detail/mdn-search/pdiegkghjahhhikafojgcmflngomilki |
Descrizione | Use omnibox to search MDN Web Docs with autocomplete. |
Dimensione del File | 15.12 KB |
Conteggio Installazioni | 128 |
Versione Corrente | 0.0.1 |
Ultimo Aggiornamento | 2022-07-09 |
Data di Pubblicazione | 2022-05-23 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | https://guokai.dev |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/hanguokai/mdn-search |
URL della Pagina della Politica sulla Privacy | https://guokai.dev/privacy |
Lingue Supportate | 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" } } |