ImageTrans

Translate images on websites

Что такое ImageTrans?

ImageTrans - это расширение Chrome, разработанное BasicCAT, и его основная функция - "Translate images on websites".

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

screenshot

Скачать файл CRX расширения ImageTrans

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

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

                        An image translator. It uses ImageTrans to translate images on websites whether they are posters, brochures, comics, manga, manhua or webtoon. State-of-art OCR and machine translation services are used to guarantee the translation quality. 

** Please note that the desktop version of ImageTrans is a dependency. The plugin won't work without it. **

Usage:
1. Install the extension and ImageTrans.
2. Right click on the image to translate it.
3. If the context menu is disabled, use the shortcut (CTRL+SHIFT+F) to call the popup, use Tab to switch operations and press Enter to perform the operation.

Detailed guide: https://github.com/xulihang/ImageTrans_chrome_extension                    

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

Название ImageTrans ImageTrans
ID lkijcgjookpddgfacoankphnpbinmhia
Официальный URL https://chromewebstore.google.com/detail/imagetrans/lkijcgjookpddgfacoankphnpbinmhia
Описание Translate images on websites
Размер файла 65.1 KB
Количество установок 6,335
Текущая Версия 1.4
Последнее Обновление 2024-03-03
Дата публикации 2021-03-30
Рейтинг 1.41/5 Всего 29 оценок
Разработчик BasicCAT
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.basiccat.org/imagetrans
URL страницы помощи https://www.basiccat.org/imagetrans
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ImageTrans",
    "version": "1.4",
    "description": "Translate images on websites",
    "permissions": [
        "storage",
        "activeTab",
        "contextMenus"
    ],
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "getImage.js",
                "jquery-3.5.1.min.js"
            ],
            "css": [
                "cursor.css"
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": "imagetrans.png",
        "icons": {
            "128": "imagetrans.png"
        }
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+V"
            },
            "description": "Opens popup.html"
        }
    },
    "icons": {
        "16": "imagetrans.png",
        "48": "imagetrans.png",
        "128": "imagetrans.png"
    },
    "homepage_url": "https:\/\/www.basiccat.org\/imagetrans",
    "manifest_version": 3
}