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是由Dennis Vink开发的Chrome扩展程序,该扩展的主要功能是“When practicing languages at Duolingo, the website shows you images which give away the answer. This extension hides the images.”。

扩展截图

screenshot

下载Duolingo Image Hider扩展crx文件

下载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"
    }
}