Translate Man Plus

A simple language translation tool, google translation interface is adopted by default. You can also switch to Baidu translation.…

What is Translate Man Plus?

Translate Man Plus is a Chrome extension developed by oren.chan, and its main feature is "A simple language translation tool, google translation interface is adopted by default. You can also switch to Baidu translation.…".

Extension Screenshots

screenshot
screenshot

Download Translate Man Plus Extension CRX File

Download Translate Man Plus extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        这是在"翻译侠(Translate Man)"原版的基础上修改的版本,修改了原版的一些bug,增加了一些功能使其功能更加强大更好用
增加的功能:
圈词翻译,主要是为了应对图片、屏蔽右键、有干扰字符等情况,导致文法选择文本、无法翻译,使用截图,然后OCR识别其中文本再来翻译
增加翻译小图标功能,选择文本后显示翻译图标按钮
增加右键翻译功能,选择文本后点击鼠标右键,出现翻译菜单
优化了自动提示功能,原版的自动提示使用的google.com,国内很可能无法使用,现在同时使用google.com和google.cn,哪个好用用哪个
发声不再是鼠标滑过发声,可以自己设置为鼠标点击发声、鼠标滑过发声、翻译自动发声(感谢某位用户的反馈)
页面内翻译窗口可以鼠标拖动,样式也改变了,自定义背景颜色去掉了(感谢某位网友的建议)
还存在的问题:
PDF翻译后无法复制,确实存在这个问题,暂时没有完美解决,这个是浏览器的限制
可以再翻译窗口选择要复制的文本,然后再PDF页面点击一下取消PDF原文本的选择,再用快捷键Ctrl+C复制,本人亲测可以使用。
但是右键还是无法复制,如果复制的文本还是英文的,是因为PDF上选择了文本。                    

Extension Basic Information

Name Translate Man Plus Translate Man Plus
ID fmiefmaepcnjahoajkfckenfngfehhma
Official URL https://chromewebstore.google.com/detail/translate-man-plus/fmiefmaepcnjahoajkfckenfngfehhma
Description A simple language translation tool, google translation interface is adopted by default. You can also switch to Baidu translation.…
File Size 182 KB
Installation Count 20,000
Current Version 8.0.1
Last Updated 2024-03-05
Publish Date 2020-06-29
Rating 3.98/5 Total 80 Ratings
Developer oren.chan
Email [email protected]
Payment Type free
Privacy Policy Page URL https://www.oren.net.cn/post/extension-ocr-privacy.html
Supported Languages de,en,ru,zh-CN,zh-TW,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "minimum_chrome_version": "107",
    "name": "__MSG_app_name__",
    "short_name": "__MSG_app_name__",
    "author": "Oren",
    "description": "__MSG_app_description__",
    "version": "8.0.1",
    "default_locale": "zh_CN",
    "icons": {
        "16": "assets\/icons\/icons16.png",
        "19": "assets\/icons\/icons19.png",
        "38": "assets\/icons\/icons38.png",
        "48": "assets\/icons\/icons48.png",
        "96": "assets\/icons\/icons96.png",
        "128": "assets\/icons\/icons128.png",
        "192": "assets\/icons\/icons192.png"
    },
    "commands": {
        "capture": {
            "suggested_key": {
                "default": "Alt+X"
            },
            "description": "__MSG_capture_shortcuts__",
            "global": true
        }
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "css": [],
            "js": [
                "assets\/js\/content_script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "assets\/js\/service_worker.js",
        "type": "module"
    },
    "action": {
        "default_icon": {
            "16": "assets\/icons\/icons16.png",
            "19": "assets\/icons\/icons19.png",
            "38": "assets\/icons\/icons38.png",
            "48": "assets\/icons\/icons48.png",
            "96": "assets\/icons\/icons96.png",
            "128": "assets\/icons\/icons128.png",
            "192": "assets\/icons\/icons192.png"
        },
        "default_popup": "popup.html",
        "default_title": "__MSG_app_name__"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "clipboardWrite",
        "tabs",
        "storage",
        "contextMenus",
        "activeTab"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}