Dictionary Tool
This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension
¿Qué es Dictionary Tool?
Dictionary Tool es una extensión de Chrome desarrollada por https://stlwebsitedevelopment.com, y su función principal es "This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Dictionary Tool
Descarga archivos de extensión Dictionary Tool en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Dictionary Tool |
ID | edifcpjfgilelnbmcihdcfhggmjodfmh |
URL Oficial | https://chromewebstore.google.com/detail/dictionary-tool/edifcpjfgilelnbmcihdcfhggmjodfmh |
Descripción | This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension |
Tamaño del Archivo | 181 KB |
Cantidad de Instalaciones | 577 |
Versión Actual | 2.1 |
Última Actualización | 2023-01-26 |
Fecha de Publicación | 2017-07-31 |
Calificación | 2.00/5 Total de 4 Calificaciones |
Desarrollador | https://stlwebsitedevelopment.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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:\/\/*\/*" ] } ] } |