Translate Scanner
This extension is made by Salure for AFAS translate purposes
什麼是Translate Scanner?
Translate Scanner是由Salure ICT開發的Chrome擴展程式,該擴展的主要功能是“This extension is made by Salure for AFAS translate purposes”。
擴展截圖
下載Translate Scanner擴展crx文件
下載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 |
官方網址 | 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": [] } |