Flewent

Translate a small portion of web pages to a language you want to learn.

Что такое Flewent?

Flewent - это расширение Chrome, разработанное Andy Groff, и его основная функция - "Translate a small portion of web pages to a language you want to learn.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        The Flewent language learning plugin takes a webpage in english and translates some of the words into a language of your choice.

This should help you build your vocabulary for a foreign language you want to learn while reading news, checking wikipedia, and doing daily web browsing. It also provides a pop-up to view the word on Google Translate (for better / more results), Wikipedia, or Dictionary.com

Recent versions made substantial changes to the way the plugin works. It now includes your own dictionary that fills up automatically and lets you translate some words without using the translation service. Your dictionary will fill up from the translation service, but you can edit the dictionary to suit your needs. Full release details here:

http://groff.co/2013/03/flewent-1-1-0-released/                    

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

Название Flewent Flewent
ID kboplipnhaapngnahmdgminfepnokjhh
Официальный URL https://chrome.google.com/webstore/detail/flewent/kboplipnhaapngnahmdgminfepnokjhh
Описание Translate a small portion of web pages to a language you want to learn.
Размер файла 93.15 KB
Количество установок 1,000
Текущая Версия 1.2.0
Последнее Обновление 2019-09-30
Дата публикации 2019-09-30
Рейтинг 3.21/5 Всего 34 оценок
Разработчик Andy Groff
Тип оплаты free
Официальный сайт расширения http://groff.co/flewent/
Поддерживаемые языки en
manifest.json
{
    "browser_action": {
        "default_icon": "logo_48.png",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "ui-icons.png"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Translate a small portion of web pages to a language you want to learn.",
    "background": {
        "scripts": [
            "jquery.js",
            "background.js"
        ]
    },
    "name": "Flewent",
    "permissions": [
        "tabs"
    ],
    "icons": {
        "48": "logo_48.png",
        "128": "logo_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "learner.js"
            ]
        }
    ],
    "manifest_version": 2,
    "version": "1.2.0"
}