Duolingo Image Hider

When practicing languages at Duolingo, the website shows you images which give away the answer. This extension hides the images.

Что такое Duolingo Image Hider?

Duolingo Image Hider - это расширение Chrome, разработанное Dennis Vink, и его основная функция - "When practicing languages at Duolingo, the website shows you images which give away the answer. This extension hides the images.".

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

screenshot

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

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

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

                        Duolingo is a great way to learn new languages. However, the Duolingo website will show images to help you pick the right words. The duolingo image hider extension hides the helper images. You will see the words or phrases only, without a visual aid.                    

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

Название Duolingo Image Hider Duolingo Image Hider
ID hifbfmmbcjpoaopiebnldbemjloffofj
Официальный URL https://chromewebstore.google.com/detail/duolingo-image-hider/hifbfmmbcjpoaopiebnldbemjloffofj
Описание When practicing languages at Duolingo, the website shows you images which give away the answer. This extension hides the images.
Размер файла 46.83 KB
Количество установок 150
Текущая Версия 0.0.1
Последнее Обновление 2021-02-14
Дата публикации 2021-02-14
Разработчик Dennis Vink
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Duolingo Image Hider",
    "version": "0.0.1",
    "browser_action": {
        "default_icon": "icon_128.png"
    },
    "description": "When practicing languages at Duolingo, the website shows you images which give away the answer. This extension hides the images.",
    "author": "drvink.com",
    "homepage_url": "https:\/\/drvink.com",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/duolingo.com\/skill\/*",
                "*:\/\/*.duolingo.com\/skill\/*"
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "icon_128.png"
    }
}