Wikipedia Search

Search Wikipedia in every language from the address bar and context menu.

O que é Wikipedia Search?

Wikipedia Search é uma extensão do Chrome desenvolvida por Corbin Davenport, e sua principal característica é "Search Wikipedia in every language from the address bar and context menu.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Wikipedia Search

Baixe arquivos de extensão Wikipedia Search no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Wikipedia Search Wikipedia Search
ID lipakennkogpodadpikgipnogamhklmk
URL Oficial https://chromewebstore.google.com/detail/wikipedia-search/lipakennkogpodadpikgipnogamhklmk
Descrição Search Wikipedia in every language from the address bar and context menu.
Tamanho do Arquivo 85.32 KB
Contagem de Instalações 24,895
Versão Atual 11
Última Atualização 2022-12-11
Data de Publicação 2019-12-22
Classificação 4.37/5 Total de 334 Avaliações
Desenvolvedor Corbin Davenport
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/corbindavenport/wikipedia-search
Idiomas Suportados 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"
    }
}