DuoListen

An extension that removes the hint sentence from a Duolingo.

DuoListen là gì?

DuoListen là một tiện ích mở rộng Chrome được phát triển bởi Morgan, và tính năng chính của nó là "An extension that removes the hint sentence from a Duolingo.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng DuoListen

Tải xuống các tệp mở rộng DuoListen dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension increases the difficulty of the popular language learning app Duolingo (https://www.duolingo.com/learn). In Duolingo users perform various exercises to learn a new language. One of those exercises asks users to translate a sentence from the target language to their own language. It gives the users an audio prompt and a written prompt. This extension removes the written prompt, which forces users to develop their listening comprehension.

I wrote this extension because this is a feature that helped me learn languages faster. I believe that other Duo users will also find this extension useful.

Technically speaking, the extension itself is pretty simple. It only runs when the user is on the /skill route and it looks for DOM changes that would indicate that a new exercise has loaded and, if that exercise provides a hint sentence, hides the hint.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên DuoListen DuoListen
ID gpmkkbobjchajdgikibjpgnpohffnlbd
URL Chính Thức https://chromewebstore.google.com/detail/duolisten/gpmkkbobjchajdgikibjpgnpohffnlbd
Mô tả An extension that removes the hint sentence from a Duolingo.
Kích Thước Tệp 12.09 KB
Số Lần Cài Đặt 217
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2020-10-04
Ngày Phát Hành 2020-10-03
Đánh Giá 3.36/5 Tổng số 11 Đánh Giá
Nhà Phát Triển Morgan
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "DuoListen",
    "version": "0.1",
    "description": "An extension that removes the hint sentence from a Duolingo.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.duolingo.com\/*"
            ],
            "js": [
                "index.js"
            ]
        }
    ],
    "icons": {
        "128": "duo.png"
    }
}