Google Translate Right Click

Add a context menu item to translate for selected text at Google Translate.

Что такое Google Translate Right Click?

Google Translate Right Click - это расширение Chrome, разработанное https://sites.google.com/site/tientx, и его основная функция - "Add a context menu item to translate for selected text at Google Translate.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Google Translate Right Click

Скачайте файлы расширений Google Translate Right Click в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Support multi-language via Google Translate                    

Основная информация о расширении

Название Google Translate Right Click Google Translate Right Click
ID blbkkgcankcmdleleianggnfooalbjof
Официальный URL https://chromewebstore.google.com/detail/google-translate-right-cl/blbkkgcankcmdleleianggnfooalbjof
Описание Add a context menu item to translate for selected text at Google Translate.
Размер файла 29.05 KB
Количество установок 1,442
Текущая Версия 0.83
Последнее Обновление 2020-07-14
Дата публикации 2020-06-28
Рейтинг 4.50/5 Всего 10 оценок
Разработчик https://sites.google.com/site/tientx
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "script.js",
            "js\/common\/languages.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "128": "googletranslate_128x128.png"
        },
        "default_popup": "options.html",
        "default_title": "Select the text you would like to translate, right mouse click and choose Google Translate"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "js\/common\/languages.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "description": "Add a context menu item to translate for selected text at Google Translate.",
    "icons": {
        "128": "googletranslate_128x128.png"
    },
    "options_page": "options.html",
    "minimum_chrome_version": "6",
    "name": "Google Translate Right Click",
    "permissions": [
        "contextMenus",
        "windows",
        "storage",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "version": "0.83",
    "manifest_version": 2
}