ImageTrans

Translate images on websites

ImageTrans là gì?

ImageTrans là một tiện ích mở rộng Chrome được phát triển bởi BasicCAT, và tính năng chính của nó là "Translate images on websites".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ImageTrans

Tải xuống các tệp mở rộng ImageTrans 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

                        An image translator. It uses ImageTrans to translate images on websites whether they are posters, brochures, comics, manga, manhua or webtoon. State-of-art OCR and machine translation services are used to guarantee the translation quality. 

** Please note that the desktop version of ImageTrans is a dependency. The plugin won't work without it. **

Usage:
1. Install the extension and ImageTrans.
2. Right click on the image to translate it.
3. If the context menu is disabled, use the shortcut (CTRL+SHIFT+F) to call the popup, use Tab to switch operations and press Enter to perform the operation.

Detailed guide: https://github.com/xulihang/ImageTrans_chrome_extension                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ImageTrans ImageTrans
ID lkijcgjookpddgfacoankphnpbinmhia
URL Chính Thức https://chromewebstore.google.com/detail/imagetrans/lkijcgjookpddgfacoankphnpbinmhia
Mô tả Translate images on websites
Kích Thước Tệp 65.1 KB
Số Lần Cài Đặt 6,335
Phiên Bản Hiện Tại 1.4
Cập Nhật Lần Cuối 2024-03-03
Ngày Phát Hành 2021-03-30
Đánh Giá 1.41/5 Tổng số 29 Đánh Giá
Nhà Phát Triển BasicCAT
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.basiccat.org/imagetrans
URL Trang Trợ Giúp https://www.basiccat.org/imagetrans
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ImageTrans",
    "version": "1.4",
    "description": "Translate images on websites",
    "permissions": [
        "storage",
        "activeTab",
        "contextMenus"
    ],
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "getImage.js",
                "jquery-3.5.1.min.js"
            ],
            "css": [
                "cursor.css"
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": "imagetrans.png",
        "icons": {
            "128": "imagetrans.png"
        }
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+V"
            },
            "description": "Opens popup.html"
        }
    },
    "icons": {
        "16": "imagetrans.png",
        "48": "imagetrans.png",
        "128": "imagetrans.png"
    },
    "homepage_url": "https:\/\/www.basiccat.org\/imagetrans",
    "manifest_version": 3
}