MDN Search

Use omnibox to search MDN Web Docs with autocomplete.

Vad är MDN Search?

MDN Search är en Chrome-tillägg utvecklad av https://guokai.dev, och dess huvudfunktion är "Use omnibox to search MDN Web Docs with autocomplete.".

Tilläggsskärmbilder

screenshot

Ladda ner MDN Search-förlängningens CRX-fil

Ladda ner MDN Search-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn MDN Search MDN Search
ID pdiegkghjahhhikafojgcmflngomilki
Officiell webbadress https://chromewebstore.google.com/detail/mdn-search/pdiegkghjahhhikafojgcmflngomilki
Beskrivning Use omnibox to search MDN Web Docs with autocomplete.
Filstorlek 15.12 KB
Antal Installationer 128
Aktuell Version 0.0.1
Senast Uppdaterad 2022-07-09
Publiceringsdatum 2022-05-23
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare https://guokai.dev
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/hanguokai/mdn-search
URL till Sekretesspolicy Sidan https://guokai.dev/privacy
Stödda Språk 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"
    }
}