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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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