Translate Scanner
This extension is made by Salure for AFAS translate purposes
Что такое Translate Scanner?
Translate Scanner - это расширение Chrome, разработанное Salure ICT, и его основная функция - "This extension is made by Salure for AFAS translate purposes".
Снимки экрана расширения
Скачать файл CRX расширения Translate Scanner
Скачайте файлы расширений Translate Scanner в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
The extension aims to simplify the translation process and improve its efficiency by seamlessly fetching text from the active tab's DOM, parsing it, and storing the translated text for later use. Through the utilization of activeTab, tabs, storage, and host permissions, your extension can access the necessary information from websites and present it in a user-friendly format, thus providing a smoother translation experience. Ultimately, the purpose of your extension is to enhance the translation process for users, enabling them to perform translations with ease and convenience.
Основная информация о расширении
Название | Translate Scanner |
ID | jpacphhdikilnebipcihgigdcoagcpei |
Официальный URL | https://chromewebstore.google.com/detail/translate-scanner/jpacphhdikilnebipcihgigdcoagcpei |
Описание | This extension is made by Salure for AFAS translate purposes |
Размер файла | 461 KB |
Количество установок | 37 |
Текущая Версия | 2.1.2 |
Последнее Обновление | 2023-07-18 |
Дата публикации | 2023-03-19 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | Salure ICT |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | nl |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Translate Scanner", "description": "This extension is made by Salure for AFAS translate purposes", "version": "2.1.2", "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "all_frames": true, "run_at": "document_end", "js": [ "content.js" ] } ], "background": { "service_worker": "service_worker.js" }, "permissions": [ "activeTab", "tabs", "storage" ], "action": { "default_icon": "icon.png", "default_popup": "index.html", "default_title": "Salure Translate" }, "content_security_policy": [] } |