Translate And Copy

Translate selected text and copy to clipboard for use

Translate And Copy क्या है?

Translate And Copy rxliuli द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Translate selected text and copy to clipboard for use"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Translate And Copy एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
        }
    }
}