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ファイルをダウンロード
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 |
Eメール | [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" } } |