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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    }
}