Yi Translate

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

Что такое Yi Translate?

Yi Translate - это расширение Chrome, разработанное lyldever, и его основная функция - "An easy-to-use translate add-on. Translate selected text easily. Translate whole webpage easily. Translate input text easily.".

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

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        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                    

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

Название Yi Translate Yi Translate
ID faljelicjmfoeappigahkpajbfbkimpj
Официальный URL https://chromewebstore.google.com/detail/yi-translate/faljelicjmfoeappigahkpajbfbkimpj
Описание An easy-to-use translate add-on. Translate selected text easily. Translate whole webpage easily. Translate input text easily.
Размер файла 310 KB
Количество установок 749
Текущая Версия 0.1.0
Последнее Обновление 2021-10-12
Дата публикации 2020-06-06
Рейтинг 3.67/5 Всего 6 оценок
Разработчик lyldever
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/lyldev/yi-translate
URL страницы помощи https://github.com/lyldev/yi-translate
Поддерживаемые языки 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__"
        }
    }
}