MDN Search

Use omnibox to search MDN Web Docs with autocomplete.

MDN Search là gì?

MDN Search là một tiện ích mở rộng Chrome được phát triển bởi https://guokai.dev, và tính năng chính của nó là "Use omnibox to search MDN Web Docs with autocomplete.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng MDN Search

Tải xuống các tệp mở rộng MDN Search dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên MDN Search MDN Search
ID pdiegkghjahhhikafojgcmflngomilki
URL Chính Thức https://chromewebstore.google.com/detail/mdn-search/pdiegkghjahhhikafojgcmflngomilki
Mô tả Use omnibox to search MDN Web Docs with autocomplete.
Kích Thước Tệp 15.12 KB
Số Lần Cài Đặt 128
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2022-07-09
Ngày Phát Hành 2022-05-23
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://guokai.dev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/hanguokai/mdn-search
URL Trang Chính Sách Bảo Mật https://guokai.dev/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}