MDN Code Search

To use, type 'mdn' plus your search term into the url bar.

Co to jest MDN Code Search?

MDN Code Search to rozszerzenie Chrome opracowane przez Bryan Clark, a jego główną funkcją jest „To use, type 'mdn' plus your search term into the url bar.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia MDN Code Search

Pobierz pliki rozszerzeń MDN Code Search w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Get quick and direct access to the MDN reference for JavaScript and CSS.  

Type 'mdn' and then your search term into the URL bar to quickly jump to the function or attribute you're looking for.  For example: 'mdn splice' or 'mdn margin'.                    

Podstawowe informacje o rozszerzeniu

Nazwa MDN Code Search MDN Code Search
ID nifjgldbgogopimfdfclafkhbadkjfca
Oficjalny URL https://chromewebstore.google.com/detail/mdn-code-search/nifjgldbgogopimfdfclafkhbadkjfca
Opis To use, type 'mdn' plus your search term into the url bar.
Rozmiar pliku 23.91 KB
Liczba instalacji 32
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2017-04-06
Data Publikacji 2017-04-06
Deweloper Bryan Clark
Typ Płatności free
Strona Rozszerzenia https://github.com/clarkbw/mdn-reference-search
Adres URL Strony Pomocy https://github.com/clarkbw/mdn-reference-search/issues/
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "MDN Code Search",
    "short_name": "MDN Search",
    "description": "To use, type 'mdn' plus your search term into the url bar.",
    "version": "1.0.1",
    "homepage_url": "https:\/\/github.com\/clarkbw\/mdn-reference-search",
    "applications": {
        "gecko": {
            "strict_min_version": "52.0a1"
        }
    },
    "icons": {
        "16": "icons\/mdn-16.png",
        "48": "icons\/mdn-48.png",
        "96": "icons\/mdn-96.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "omnibox": {
        "keyword": "mdn"
    },
    "manifest_version": 2,
    "permissions": [
        "https:\/\/developer.mozilla.org\/"
    ]
}