Translate And Copy

Translate selected text and copy to clipboard for use

Translate And Copyคืออะไร?

Translate And Copy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย rxliuli และคุณลักษณะหลักของมันคือ "Translate selected text and copy to clipboard for use"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Translate And Copy

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        }
    }
}