MDN Search

Use omnibox to search MDN Web Docs with autocomplete.

MDN Searchคืออะไร?

MDN Search เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://guokai.dev และคุณลักษณะหลักของมันคือ "Use omnibox to search MDN Web Docs with autocomplete."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MDN Search

ดาวน์โหลดไฟล์ส่วนขยาย MDN Search ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ MDN Search MDN Search
ID pdiegkghjahhhikafojgcmflngomilki
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/mdn-search/pdiegkghjahhhikafojgcmflngomilki
คำอธิบาย Use omnibox to search MDN Web Docs with autocomplete.
ขนาดไฟล์ 15.12 KB
จำนวนการติดตั้ง 128
เวอร์ชันปัจจุบัน 0.0.1
อัปเดตครั้งล่าสุด 2022-07-09
วันที่เผยแพร่ 2022-05-23
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://guokai.dev
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/hanguokai/mdn-search
URL หน้านโยบายความเป็นส่วนตัว https://guokai.dev/privacy
ภาษาที่รองรับ 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"
    }
}