Define

Get the definition/synonym of any word in a webpage.

O que é Define?

Define é uma extensão do Chrome desenvolvida por lerxst, e sua principal característica é "Get the definition/synonym of any word in a webpage.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Define

Baixe arquivos de extensão Define 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

                        v2.0.1
**Google dictionary error fixed**

• Select any word on a webpage and see its definition or its synonym by using the context-menu option.
The definition can also be viewed using the key combination 'Ctrl+m' after selecting a word.

•You can also type in the word you want to look-up by using Chrome's omnibox.

**Using the OMNIBOX**
To use Chrome's address bar for a quick search, type 'df' (without quotes) and press 'Tab' to get the prompt. Type in the search word and press enter. 
To look the word up in a thesaurus, append the search word with '\t' (without quotes).

Choose from 5 online dictionaries -
• Google
• Merriam-Webster
• Collins
• The Free Dictionary

and 3 online thesauruses -
• Thesaurus.com
• Merriam-Webster
• Collins

The dictionary/thesaurus to be used can be selected from the Options page of the extension (Tools -> Extensions).                    

Informações Básicas da Extensão

Nome Define Define
ID dkfohljnogkakijpbgoebdcbgllabgbm
URL Oficial https://chrome.google.com/webstore/detail/define/dkfohljnogkakijpbgoebdcbgllabgbm
Descrição Get the definition/synonym of any word in a webpage.
Tamanho do Arquivo 248 KB
Contagem de Instalações 1,000
Versão Atual 2.0.1
Última Atualização 2013-12-28
Data de Publicação 2013-12-28
Classificação 3.88/5 Total de 32 Avaliações
Desenvolvedor lerxst
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Define",
    "version": "2.0.1",
    "options_page": "options.html",
    "description": "Get the definition\/synonym of any word in a webpage.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "omnibox": {
        "keyword": "df"
    },
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-1.4.2.js",
                "jquery.hotkeys.js",
                "content.js"
            ]
        }
    ]
}