Open Translator
Quick access to Google Translate
Open Translator là gì?
Open Translator là một tiện ích mở rộng Chrome được phát triển bởi artar9404, và tính năng chính của nó là "Quick access to Google Translate".
Ả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 Open Translator
Tải xuống các tệp mở rộng Open Translator 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
Provides quick access to Google Translate, allowing you to immediately translate selected text from the current webpage to another language. Features: * Select to translate * Reverse translation * Smart language pair recognition * Possibility to use as standalone window * Open source https://github.com/tarcode-apps/open-translator
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Open Translator |
ID | cgllihjilejnolgcflldbmjdkjgdgfaa |
URL Chính Thức | https://chromewebstore.google.com/detail/open-translator/cgllihjilejnolgcflldbmjdkjgdgfaa |
Mô tả | Quick access to Google Translate |
Kích Thước Tệp | 237 KB |
Số Lần Cài Đặt | 715 |
Phiên Bản Hiện Tại | 1.4 |
Cập Nhật Lần Cuối | 2022-06-03 |
Ngày Phát Hành | 2021-11-16 |
Đánh Giá | 4.75/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | artar9404 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/tarcode-apps/open-translator |
Ngôn Ngữ Được Hỗ Trợ | en,ru,uk |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_appName__", "version": "1.4", "author": "Artem Tarasov", "description": "__MSG_appDescription__", "homepage_url": "https:\/\/github.com\/tarcode-apps\/open-translator", "default_locale": "en", "permissions": [ "storage", "activeTab", "contextMenus" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_security_policy": { "extension_pages": "default-src 'self'; style-src 'self' 'unsafe-hashes' 'sha256-2FkMoYIfUwhaMVsbQnfoAJc8+Qzt0TC1GWOTrODFyNE='; connect-src https:\/\/translate.googleapis.com" }, "options_page": "options.html", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end", "all_frames": true, "js": [ "content.js" ] } ], "action": { "default_popup": "popup.html", "default_title": "__MSG_appTitle__" }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Q", "mac": "MacCtrl+Shift+Q" }, "description": "__MSG_openShortcut__" }, "translate_page": { "suggested_key": { "default": "Alt+Q", "mac": "Alt+Shift+Q" }, "description": "__MSG_translatePage__" } } } |