Wikipedia Search
Search Wikipedia in every language from the address bar and context menu.
Wikipedia Searchคืออะไร?
Wikipedia Search เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Corbin Davenport และคุณลักษณะหลักของมันคือ "Search Wikipedia in every language from the address bar and context menu."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Wikipedia Search
ดาวน์โหลดไฟล์ส่วนขยาย Wikipedia Search ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Wikipedia Search is an extension that adds multiple ways to search Wikipedia, the free encyclopedia, right in your web browser. You can type "wiki" in the browser search bar, then the Space or Tab key, to start a search with live suggestions as you type. Also, selecting a word or phrase in a web page and opening the context menu will show a Wikipedia search option. You can change the default search language to any language Wikipedia supports, and the optional multi-language search feature can override it with a different choice. Search results can be opened in the desktop Wikipedia site, the mobile site, or Wikiwand. Wikipedia is a trademark of the Wikimedia Foundation. Wikipedia Search is in no way affiliated with Wikipedia or the Wikimedia Foundation.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Wikipedia Search |
ID | lipakennkogpodadpikgipnogamhklmk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/wikipedia-search/lipakennkogpodadpikgipnogamhklmk |
คำอธิบาย | Search Wikipedia in every language from the address bar and context menu. |
ขนาดไฟล์ | 85.32 KB |
จำนวนการติดตั้ง | 24,895 |
เวอร์ชันปัจจุบัน | 11 |
อัปเดตครั้งล่าสุด | 2022-12-11 |
วันที่เผยแพร่ | 2019-12-22 |
คะแนน | 4.37/5 รวมทั้งหมด 334 คะแนน |
ผู้พัฒนา | Corbin Davenport |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/corbindavenport/wikipedia-search |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Wikipedia Search", "version": "11", "author": "Corbin Davenport", "homepage_url": "https:\/\/github.com\/corbindavenport\/wikipedia-search", "description": "Search Wikipedia in every language from the address bar and context menu.", "options_ui": { "page": "settings.html", "open_in_tab": false }, "omnibox": { "keyword": "wiki" }, "permissions": [ "contextMenus", "storage", "notifications" ], "minimum_chrome_version": "93", "host_permissions": [ "https:\/\/*.wikipedia.org\/*" ], "background": { "service_worker": "js\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.wikipedia.org\/*" ], "js": [ "js\/contentscript.js" ], "run_at": "document_end" } ], "icons": { "32": "img\/icon32.png", "48": "img\/icon48.png", "128": "img\/icon128.png" } } |