Mini Translator

Translate a text to a different language

What is Mini Translator?

Mini Translator is a Chrome extension developed by axel_vc, and its main feature is "Translate a text to a different language".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Mini Translator Extension CRX File

Download Mini Translator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Mini Translator Mini Translator
ID godoijpcenklboeghnkeafimbadkgiib
Official URL https://chromewebstore.google.com/detail/mini-translator/godoijpcenklboeghnkeafimbadkgiib
Description Translate a text to a different language
File Size 96.5 KB
Installation Count 213
Current Version 1.0.0
Last Updated 2022-03-29
Publish Date 2022-03-28
Developer axel_vc
Email [email protected]
Payment Type free
Extension Website https://github.com/axelvc/mini_translator
Supported Languages 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"
    }
}