Wikipedia Search
Search Wikipedia in every language from the address bar and context menu.
Wikipedia Search란 무엇입니까?
Wikipedia Search은(는) Corbin Davenport에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Search Wikipedia in every language from the address bar and context menu."입니다.
확장 프로그램 스크린샷
Wikipedia Search 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |