Yi Translate

An easy-to-use translate add-on. Translate selected text easily. Translate whole webpage easily. Translate input text easily.

¿Qué es Yi Translate?

Yi Translate es una extensión de Chrome desarrollada por lyldever, y su función principal es "An easy-to-use translate add-on. Translate selected text easily. Translate whole webpage easily. Translate input text easily.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Yi Translate

Descarga archivos de extensión Yi Translate en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        0. Use it all over the world🌏
You can use this amazing add-on both in China Mainland (where google is banned) and Rest of the world.

1. Translate Selected Text:
You can select Text in any webpages, then you'll get its translation easily.

2. Translate a Whole Webpage:
Translate whole webpage or link into your language.

3. Translate Input:
You can input text in the add-on's popup, and get translation immediately.

4. Keyboard shortcuts support:
Translate with keyboard shortcuts.

======================

Contribute:

1. open issues to report bugs or new needed features : 
https://github.com/lyldev/yi-translate/issues/new/choose

2. clone this repo to fix bugs or add new features, then pull request : 
https://github.com/lyldev/yi-translate

3. help to localize this add-on : 
https://poeditor.com/join/project/emwUnKSv3K

======================

💖DONATE💖:

If you think this add-on is helpful, please give it a 5-star review. You can also donate to the develper to help this add-on become better.

——for people outside Mainland China:
support on Buy Me A Coffee: https://www.buymeacoffee.com/lyldev

——大陆用户请使用:
爱发电 :https://afdian.net/@lyldev                    

Información Básica de la Extensión

Nombre Yi Translate Yi Translate
ID faljelicjmfoeappigahkpajbfbkimpj
URL Oficial https://chromewebstore.google.com/detail/yi-translate/faljelicjmfoeappigahkpajbfbkimpj
Descripción An easy-to-use translate add-on. Translate selected text easily. Translate whole webpage easily. Translate input text easily.
Tamaño del Archivo 310 KB
Cantidad de Instalaciones 749
Versión Actual 0.1.0
Última Actualización 2021-10-12
Fecha de Publicación 2020-06-06
Calificación 3.67/5 Total de 6 Calificaciones
Desarrollador lyldever
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/lyldev/yi-translate
URL de la Página de Ayuda https://github.com/lyldev/yi-translate
Idiomas Soportados id,de,en,fil,fr,nl,no,vi,tr,ca,da,es,it,hu,pl,ro,fi,sv,cs,el,sr,bg,ru,uk,iw,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.1.0",
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "default_locale": "en",
    "permissions": [
        "",
        "storage",
        "contextMenus"
    ],
    "options_ui": {
        "page": "options\/index.html",
        "open_in_tab": true
    },
    "icons": {
        "512": "icons\/512.png",
        "128": "icons\/128.png",
        "64": "icons\/64.png",
        "48": "icons\/48.png",
        "32": "icons\/32.png"
    },
    "background": {
        "scripts": [
            "background\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "512": "icons\/512.png",
            "128": "icons\/128.png",
            "64": "icons\/64.png",
            "48": "icons\/48.png",
            "32": "icons\/32.png",
            "16": "icons\/16.png"
        },
        "default_popup": "popup\/index.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "content\/content.js"
            ],
            "css": [
                "content\/content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "icons\/64.png"
    ],
    "commands": {
        "_execute_browser_action": {
            "description": "__MSG_openPopupDescription__",
            "suggested_key": {
                "default": "Ctrl+Shift+Space"
            }
        },
        "translateSelectedText": {
            "description": "__MSG_translateTextMenu__",
            "suggested_key": {
                "default": "Ctrl+Space"
            }
        },
        "translatePage": {
            "description": "__MSG_translatePageMenu__"
        }
    }
}