Translate And Copy

Translate selected text and copy to clipboard for use

什么是Translate And Copy?

Translate And Copy是由rxliuli开发的Chrome扩展程序,该扩展的主要功能是“Translate selected text and copy to clipboard for use”。

扩展截图

screenshot
screenshot
screenshot

下载Translate And Copy扩展crx文件

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

扩展使用说明

                        Convert the selected text on the webpage to another language, and then copy it to the clipboard for easy pasting. The main purpose is to reply to messages in other languages, so we can only rely on machine translation.

Using

1. Select a piece of text
2. Right-click the menu to select `Translate And Copy` or press the shortcut key `Alt+T`
3. Paste the translated text                    

扩展基本信息

名称 Translate And Copy Translate And Copy
ID namibphobdcighbjjojlhcflpnhobjeo
官方URL https://chromewebstore.google.com/detail/translate-and-copy/namibphobdcighbjjojlhcflpnhobjeo
简介 Translate selected text and copy to clipboard for use
文件大小 62.16 KB
安装次数 73
当前版本 0.2.1
更新时间 2023-04-09
上架时间 2022-12-27
评分 5.00/5 共1次评分
开发者 rxliuli
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/rxliuli/translate-and-copy
隐私政策页面URL https://joplin-utils.rxliuli.com/joplin-search-integration/privacy.html
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Translate And Copy",
    "version": "0.2.1",
    "description": "Translate selected text and copy to clipboard for use",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-scripts\/main.js"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/translate.google.com\/"
    ],
    "permissions": [
        "contextMenus",
        "clipboardWrite",
        "storage",
        "tabs",
        "notifications"
    ],
    "icons": {
        "16": "assets\/icon-16.png",
        "32": "assets\/icon-32.png",
        "48": "assets\/icon-48.png",
        "128": "assets\/icon-128.png"
    },
    "action": {
        "default_popup": "popup\/index.html"
    },
    "commands": {
        "translate": {
            "suggested_key": {
                "default": "Alt+T"
            },
            "description": "Translate selected text and copy to clipboard for use"
        }
    }
}