Translate Scanner
This extension is made by Salure for AFAS translate purposes
Vad är Translate Scanner?
Translate Scanner är en Chrome-tillägg utvecklad av Salure ICT, och dess huvudfunktion är "This extension is made by Salure for AFAS translate purposes".
Tilläggsskärmbilder
Ladda ner Translate Scanner-förlängningens CRX-fil
Ladda ner Translate Scanner-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Translate Scanner |
ID | jpacphhdikilnebipcihgigdcoagcpei |
Officiell webbadress | https://chromewebstore.google.com/detail/translate-scanner/jpacphhdikilnebipcihgigdcoagcpei |
Beskrivning | This extension is made by Salure for AFAS translate purposes |
Filstorlek | 461 KB |
Antal Installationer | 37 |
Aktuell Version | 2.1.2 |
Senast Uppdaterad | 2023-07-18 |
Publiceringsdatum | 2023-03-19 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | Salure ICT |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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": [] } |