Translate Scanner
This extension is made by Salure for AFAS translate purposes
Translate Scanner là gì?
Translate Scanner là một tiện ích mở rộng Chrome được phát triển bởi Salure ICT, và tính năng chính của nó là "This extension is made by Salure for AFAS translate purposes".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Translate Scanner
Tải xuống các tệp mở rộng Translate Scanner dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Translate Scanner |
ID | jpacphhdikilnebipcihgigdcoagcpei |
URL Chính Thức | https://chromewebstore.google.com/detail/translate-scanner/jpacphhdikilnebipcihgigdcoagcpei |
Mô tả | This extension is made by Salure for AFAS translate purposes |
Kích Thước Tệp | 461 KB |
Số Lần Cài Đặt | 37 |
Phiên Bản Hiện Tại | 2.1.2 |
Cập Nhật Lần Cuối | 2023-07-18 |
Ngày Phát Hành | 2023-03-19 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Salure ICT |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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": [] } |