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.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載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 Wikipedia Search
ID lipakennkogpodadpikgipnogamhklmk
官方網址 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"
    }
}