Duolingo Image Hider

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

Cos'è Duolingo Image Hider?

Duolingo Image Hider è un'estensione di Chrome sviluppata da Dennis Vink, e la sua funzione principale è "When practicing languages at Duolingo, the website shows you images which give away the answer. This extension hides the images.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Duolingo Image Hider

Scarica i file di estensione Duolingo Image Hider in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Duolingo Image Hider Duolingo Image Hider
ID hifbfmmbcjpoaopiebnldbemjloffofj
URL Ufficiale https://chromewebstore.google.com/detail/duolingo-image-hider/hifbfmmbcjpoaopiebnldbemjloffofj
Descrizione When practicing languages at Duolingo, the website shows you images which give away the answer. This extension hides the images.
Dimensione del File 46.83 KB
Conteggio Installazioni 150
Versione Corrente 0.0.1
Ultimo Aggiornamento 2021-02-14
Data di Pubblicazione 2021-02-14
Sviluppatore Dennis Vink
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}