Mini Translator

Translate a text to a different language

Qu'est-ce que Mini Translator ?

Mini Translator est une extension Chrome développée par axel_vc, et sa fonction principale est "Translate a text to a different language".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Mini Translator

Téléchargez les fichiers d'extension Mini Translator 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

                        Simple translator extension, you can translate selected text or use the toolbar to get a translation of any text. Translations are obtained by Google Translate.                    

Informations de Base sur l'Extension

Nom Mini Translator Mini Translator
ID godoijpcenklboeghnkeafimbadkgiib
URL Officiel https://chromewebstore.google.com/detail/mini-translator/godoijpcenklboeghnkeafimbadkgiib
Description Translate a text to a different language
Taille du Fichier 96.5 KB
Nombre d'Installations 213
Version Actuelle 1.0.0
Dernière Mise à Jour 2022-03-29
Date de Publication 2022-03-28
Développeur axel_vc
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/axelvc/mini_translator
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.0.0",
    "name": "Mini Translator",
    "description": "Translate a text to a different language",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "options_ui": {
        "page": "options\/index.html",
        "open_in_tab": true
    },
    "background": {
        "service_worker": "background\/main.js"
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "contentScripts\/*",
                "icons\/*"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScripts\/main.js"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*\/"
    ],
    "action": {
        "default_popup": "popup\/index.html"
    }
}