MDN Code Search
To use, type 'mdn' plus your search term into the url bar.
What is MDN Code Search?
MDN Code Search is a Chrome extension developed by Bryan Clark, and its main feature is "To use, type 'mdn' plus your search term into the url bar.".
Extension Screenshots
Download MDN Code Search Extension CRX File
Download MDN Code Search extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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'.
Extension Basic Information
Name | MDN Code Search |
ID | nifjgldbgogopimfdfclafkhbadkjfca |
Official URL | https://chromewebstore.google.com/detail/mdn-code-search/nifjgldbgogopimfdfclafkhbadkjfca |
Description | To use, type 'mdn' plus your search term into the url bar. |
File Size | 23.91 KB |
Installation Count | 32 |
Current Version | 1.0.1 |
Last Updated | 2017-04-06 |
Publish Date | 2017-04-06 |
Developer | Bryan Clark |
Payment Type | free |
Extension Website | https://github.com/clarkbw/mdn-reference-search |
Help Page URL | https://github.com/clarkbw/mdn-reference-search/issues/ |
Supported Languages | 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\/" ] } |