Wikipedia Highlight Lookup Plugin

Look up highlighted text on wikipedia. Just highlight the word or phrase you want to look up and press Ctrl+I.

O que é Wikipedia Highlight Lookup Plugin?

Wikipedia Highlight Lookup Plugin é uma extensão do Chrome desenvolvida por Tim Hansen, e sua principal característica é "Look up highlighted text on wikipedia. Just highlight the word or phrase you want to look up and press Ctrl+I.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Wikipedia Highlight Lookup Plugin

Baixe arquivos de extensão Wikipedia Highlight Lookup Plugin 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

                        A simple open-source chrome extension that allows you to look up terms on wikipedia by highlighting text on any page and then hitting Ctrl+I (Command+I on apple).

Icons made by SimpleIcon from www.flaticon.com is licensed by CC 3.0 BY.                    

Informações Básicas da Extensão

Nome Wikipedia Highlight Lookup Plugin Wikipedia Highlight Lookup Plugin
ID lccilnojalgdoafhhjhiabfcmpahahec
URL Oficial https://chromewebstore.google.com/detail/wikipedia-highlight-looku/lccilnojalgdoafhhjhiabfcmpahahec
Descrição Look up highlighted text on wikipedia. Just highlight the word or phrase you want to look up and press Ctrl+I.
Tamanho do Arquivo 286 KB
Contagem de Instalações 58
Versão Atual 0.0.3
Última Atualização 2017-01-17
Data de Publicação 2017-01-16
Desenvolvedor Tim Hansen
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wikipedia Highlight Lookup Plugin",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "Look up highlighted text on wikipedia.  Just highlight the word or phrase you want to look up and press Ctrl+I.",
    "icons": {
        "16": "icon\/16.png",
        "48": "icon\/48.png",
        "128": "icon\/128.png"
    },
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/bg\/content.js"
            ]
        }
    ],
    "commands": {
        "wiki-lookup": {
            "suggested_key": {
                "default": "Ctrl+I",
                "mac": "Command+I"
            },
            "description": "Toggle wikipedia lookup"
        }
    },
    "permissions": [
        "tabs",
        "activeTab",
        "notifications",
        "http:\/\/*\/*",
        "https:\/\/upload.wikimedia.org\/*"
    ]
}