Dictionary
Use the WordNet dictionary to lookup the definition of selected words on a page.
O que é Dictionary?
Dictionary é uma extensão do Chrome desenvolvida por marc.goodman.pcc.edu, e sua principal característica é "Use the WordNet dictionary to lookup the definition of selected words on a page.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Dictionary
Baixe arquivos de extensão Dictionary 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
This is an example Dictionary Lookup extension based on WordNet. This is a demo for Portland Community College's course CIS 233W, JavaScript Programming II.
Informações Básicas da Extensão
Nome | |
ID | jpmahklahimackogblepjgmljnfnjadb |
URL Oficial | https://chrome.google.com/webstore/detail/dictionary/jpmahklahimackogblepjgmljnfnjadb |
Descrição | Use the WordNet dictionary to lookup the definition of selected words on a page. |
Tamanho do Arquivo | 12.35 KB |
Contagem de Instalações | 228 |
Versão Atual | 0.1 |
Última Atualização | 2017-06-04 |
Data de Publicação | 2017-06-04 |
Classificação | 1.00/5 Total de 1 Avaliações |
Desenvolvedor | marc.goodman.pcc.edu |
Tipo de Pagamento | free |
Site da Extensão | http://www.cis233w.xyz/dict |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Dictionary", "version": "0.1", "description": "Use the WordNet dictionary to lookup the definition of selected words on a page.", "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "browser_action": { "default_icon": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "default_title": "dictionary" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "homepage_url": "http:\/\/www.cis233w.xyz\/dict\/" } |