Duolingo Image Hider

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

Qu'est-ce que Duolingo Image Hider ?

Duolingo Image Hider est une extension Chrome développée par Dennis Vink, et sa fonction principale est "When practicing languages at Duolingo, the website shows you images which give away the answer. This extension hides the images.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Duolingo Image Hider

Téléchargez les fichiers d'extension Duolingo Image Hider au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Duolingo Image Hider Duolingo Image Hider
ID hifbfmmbcjpoaopiebnldbemjloffofj
URL Officiel https://chromewebstore.google.com/detail/duolingo-image-hider/hifbfmmbcjpoaopiebnldbemjloffofj
Description When practicing languages at Duolingo, the website shows you images which give away the answer. This extension hides the images.
Taille du Fichier 46.83 KB
Nombre d'Installations 150
Version Actuelle 0.0.1
Dernière Mise à Jour 2021-02-14
Date de Publication 2021-02-14
Développeur Dennis Vink
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}