Dictionary Tool
This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension
Что такое Dictionary Tool?
Dictionary Tool - это расширение Chrome, разработанное https://stlwebsitedevelopment.com, и его основная функция - "This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension".
Снимки экрана расширения
Скачать файл CRX расширения Dictionary Tool
Скачайте файлы расширений Dictionary Tool в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Dictionary Tool |
ID | edifcpjfgilelnbmcihdcfhggmjodfmh |
Официальный URL | https://chromewebstore.google.com/detail/dictionary-tool/edifcpjfgilelnbmcihdcfhggmjodfmh |
Описание | This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension |
Размер файла | 181 KB |
Количество установок | 577 |
Текущая Версия | 2.1 |
Последнее Обновление | 2023-01-26 |
Дата публикации | 2017-07-31 |
Рейтинг | 2.00/5 Всего 4 оценок |
Разработчик | https://stlwebsitedevelopment.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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:\/\/*\/*" ] } ] } |