Translate Scanner
This extension is made by Salure for AFAS translate purposes
O que é Translate Scanner?
Translate Scanner é uma extensão do Chrome desenvolvida por Salure ICT, e sua principal característica é "This extension is made by Salure for AFAS translate purposes".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Translate Scanner
Baixe arquivos de extensão Translate Scanner 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
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.
Informações Básicas da Extensão
Nome | Translate Scanner |
ID | jpacphhdikilnebipcihgigdcoagcpei |
URL Oficial | https://chromewebstore.google.com/detail/translate-scanner/jpacphhdikilnebipcihgigdcoagcpei |
Descrição | This extension is made by Salure for AFAS translate purposes |
Tamanho do Arquivo | 461 KB |
Contagem de Instalações | 37 |
Versão Atual | 2.1.2 |
Última Atualização | 2023-07-18 |
Data de Publicação | 2023-03-19 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Salure ICT |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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": [] } |