Duolingo Image Hider

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

Wat is Duolingo Image Hider?

Duolingo Image Hider is een Chrome-extensie ontwikkeld door Dennis Vink, en de belangrijkste functie is "When practicing languages at Duolingo, the website shows you images which give away the answer. This extension hides the images.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Duolingo Image Hider

Download Duolingo Image Hider-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Duolingo Image Hider Duolingo Image Hider
ID hifbfmmbcjpoaopiebnldbemjloffofj
Officiële URL https://chromewebstore.google.com/detail/duolingo-image-hider/hifbfmmbcjpoaopiebnldbemjloffofj
Beschrijving When practicing languages at Duolingo, the website shows you images which give away the answer. This extension hides the images.
Bestandsgrootte 46.83 KB
Aantal Installaties 150
Huidige Versie 0.0.1
Laatst Bijgewerkt 2021-02-14
Publicatiedatum 2021-02-14
Ontwikkelaar Dennis Vink
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}