Dictionary Tool
This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension
O que é Dictionary Tool?
Dictionary Tool é uma extensão do Chrome desenvolvida por https://stlwebsitedevelopment.com, e sua principal característica é "This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Dictionary Tool
Baixe arquivos de extensão Dictionary Tool 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 chrome extension that allows you to highlight a word on the page, click on my extension and get a definition of the word you have highlighted. The extension is connected to a dictionary database and uses a special algorithm to retrieve the highlighted text, query the database and retrieve the definition for you in an elegant, simple, and well designed chrome extension.
Informações Básicas da Extensão
Nome | Dictionary Tool |
ID | edifcpjfgilelnbmcihdcfhggmjodfmh |
URL Oficial | https://chromewebstore.google.com/detail/dictionary-tool/edifcpjfgilelnbmcihdcfhggmjodfmh |
Descrição | This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension |
Tamanho do Arquivo | 181 KB |
Contagem de Instalações | 577 |
Versão Atual | 2.1 |
Última Atualização | 2023-01-26 |
Data de Publicação | 2017-07-31 |
Classificação | 2.00/5 Total de 4 Avaliações |
Desenvolvedor | https://stlwebsitedevelopment.com |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Dictionary Tool", "description": "This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension", "version": "2.1", "author": "Leon Krugliakov", "icons": { "16": "icons\/icon.png", "32": "icons\/icon.png", "48": "icons\/icon.png", "128": "icons\/icon.png" }, "action": { "default_popup": "popup.html" }, "permissions": [ "scripting", "activeTab" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "js": [ "scripts\/main.js", "scripts\/jquery.js" ], "matches": [ "https:\/\/*\/*" ] } ] } |