ImageTrans

Translate images on websites

Qu'est-ce que ImageTrans ?

ImageTrans est une extension Chrome développée par BasicCAT, et sa fonction principale est "Translate images on websites".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension ImageTrans

Téléchargez les fichiers d'extension ImageTrans au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom ImageTrans ImageTrans
ID lkijcgjookpddgfacoankphnpbinmhia
URL Officiel https://chromewebstore.google.com/detail/imagetrans/lkijcgjookpddgfacoankphnpbinmhia
Description Translate images on websites
Taille du Fichier 65.1 KB
Nombre d'Installations 6,335
Version Actuelle 1.4
Dernière Mise à Jour 2024-03-03
Date de Publication 2021-03-30
Évaluation 1.41/5 Total 29 Évaluations
Développeur BasicCAT
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.basiccat.org/imagetrans
URL de la Page d'Aide https://www.basiccat.org/imagetrans
Langues Prises en Charge 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
}