Easy Definition (Highlight and Ctrl+Space)

Easy Definition (Highlight and Ctrl+Space)

O que é Easy Definition (Highlight and Ctrl+Space)?

Easy Definition (Highlight and Ctrl+Space) é uma extensão do Chrome desenvolvida por Prateek Jha, e sua principal característica é "Easy Definition (Highlight and Ctrl+Space)".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Easy Definition (Highlight and Ctrl+Space)

Baixe arquivos de extensão Easy Definition (Highlight and Ctrl+Space) 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

                        Easily get the definition of any word by pressing Ctrl + Space.

How to use:
On any web page highlight the word using mouse pointer and Press CTRL+Space

No need to open new tabs and loose sight of your working page even for a second. It gets you the simplest ever meaning of the selected word from web.

To change the shortcut command go to chrome://extensions/shortcuts. Find Easy Definition and choose any set of available commands.

For any complains and queries reach us at [email protected].                    

Informações Básicas da Extensão

Nome Easy Definition (Highlight and Ctrl+Space) Easy Definition (Highlight and Ctrl+Space)
ID oiphjheegkcofbmfcjjjgpeeieddfnml
URL Oficial https://chromewebstore.google.com/detail/easy-definition-highlight/oiphjheegkcofbmfcjjjgpeeieddfnml
Descrição Easy Definition (Highlight and Ctrl+Space)
Tamanho do Arquivo 17.79 KB
Contagem de Instalações 21
Versão Atual 1.0.0
Última Atualização 2020-04-13
Data de Publicação 2020-04-10
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Prateek Jha
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Easy Definition (Highlight and Ctrl+Space)",
    "version": "1.0.0",
    "description": "Easy Definition (Highlight and Ctrl+Space)",
    "icons": {
        "128": "finder_128.png"
    },
    "browser_action": {
        "default_icon": "finder_128_popup.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Space",
                "mac": "MacCtrl+Space"
            }
        }
    }
}