ImageTrans

Translate images on websites

什么是ImageTrans?

ImageTrans是由BasicCAT开发的Chrome扩展程序,该扩展的主要功能是“Translate images on websites”。

扩展截图

screenshot

下载ImageTrans扩展crx文件

下载ImageTrans扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 ImageTrans ImageTrans
ID lkijcgjookpddgfacoankphnpbinmhia
官方URL https://chromewebstore.google.com/detail/imagetrans/lkijcgjookpddgfacoankphnpbinmhia
简介 Translate images on websites
文件大小 65.1 KB
安装次数 6,335
当前版本 1.4
更新时间 2024-03-03
上架时间 2021-03-30
评分 1.41/5 共29次评分
开发者 BasicCAT
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.basiccat.org/imagetrans
帮助页面URL https://www.basiccat.org/imagetrans
支持的语言 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
}