duoleavemealone for Duolingo

Makes Duolingo more user-friendly

¿Qué es duoleavemealone for Duolingo?

duoleavemealone for Duolingo es una extensión de Chrome desarrollada por Dan Erat, y su función principal es "Makes Duolingo more user-friendly".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión duoleavemealone for Duolingo

Descarga archivos de extensión duoleavemealone for Duolingo en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        This extension makes the Duolingo.com language-learning site faster to use by automatically clicking through interstitial screens displayed after entering correct answers or finishing lessons. These screens' messages are displayed briefly onscreen instead.

Duo's motivational messages are also skipped, because everyone already knows that you are great! :-D (Note that Duolingo now provides a setting for disabling motivational messages, which is more reliable than this extension's detection logic.)

Since this extension interacts the Duolingo site, it's unfortunately likely to stop working if (or when) the site's interface is updated.

**This extension is not affiliated with Duolingo.**

---

Changes:

0.33: Fix correct answer messages not getting skipped in "personalized practice" lessons.

0.32: Fix story support and improve bubble colors when dark mode is enabled.

0.31: Support Duolingo's dark mode setting, mostly (end-of-lesson messages don't seem to be displayed). Also skip the "perfect" screen after completing a message without any mistakes.

0.30: Handle /lesson URLs, apparently introduced by Duolingo's tree redesign (https://blog.duolingo.com/new-duolingo-home-screen-design/). Also make the options page a bit less ugly.

0.29: Update to Manifest V3 (hopefully an invisible change). Also fix discussion-link-loading and remove a debug console.log call.

0.28: Click through correct-answer screens for alphabet/character exercises.

0.27: Click through some additional end-of-story screens.

0.26: Add a browser action button that can be clicked to temporarily toggle the extension off or on.

0.25: Click through most of the screens related to "legendary" (crown) lessons for gilded skills, and avoid a bug where the extension got stuck clicking a button at the end of a legendary lesson. Also add click rate-limiting to try to avoid future bugs like this.

0.24: Handle new ways that button colors are set in regular skills and stories.

0.23: Handle /progress-quiz/ URLs for Duolingo Plus.

0.22: Second attempt at handling changes to "correct" message background color.

0.21: Handle changed "correct" message background color.

0.20: Add on-by-default option for controlling whether correct-answer messages are skipped or not.

0.19: Click blue "Continue" button that's now show after completing a story.

0.18: Fix discuss links again (broken by another Duolingo change).

0.17: Fix discuss links (which look like they were broken by a Duolingo change).

0.16: Display completion messages after stories. Fix a bug where the next button was clicked prematurely when answering text-entry questions in stories.

0.15: Add support for placement tests (available before creating a profile).

0.14: Make correct-answer messages yellow instead of green when they contain extra information, e.g. typo/accent corrections or translations.

0.13: Improve support for Stories and enable by default.

0.12: Add an option to enable experimental support for clicking the next button in Stories. (Options are available by right-clicking on the extension's toolbar icon.)

0.11: Fix incorrect clicks at beginning of skill tests. Fix discuss links when loading URLs directly instead of navigating from main page. Add spacing between typo messages and discuss links.

0.10: Add experimental support for displaying discuss links. (Not released on Chrome Web Store.)

0.9: Skip start screen when testing out of the current level of a skill (i.e. URLs ending in /test).

0.8: Add options to control message timeouts and center messages horizontally. Also handle checkpoints (i.e. /checkpoint/ URLs) in addition to tests (/bigtest/).

0.7: Add an option page and provide support for automatically starting timed or non-timed practice. (I had to add the "storage" permission to be able to save the option's value.) Also automatically click the next button during checkpoints that are being used to test out of a set of skills.

0.6: Also automatically click the "Next" button on https://www.duolingo.com/practice. Note that motivational messages sometimes (always?) aren't skipped here. Duolingo makes it really hard to consistently detect them. :-(                    

Información Básica de la Extensión

Nombre duoleavemealone for Duolingo duoleavemealone for Duolingo
ID clipadhhddnpnocanhnbonnhppdibnpf
URL Oficial https://chromewebstore.google.com/detail/duoleavemealone-for-duoli/clipadhhddnpnocanhnbonnhppdibnpf
Descripción Makes Duolingo more user-friendly
Tamaño del Archivo 25.34 KB
Cantidad de Instalaciones 1,219
Versión Actual 0.33
Última Actualización 2024-01-24
Fecha de Publicación 2020-06-22
Calificación 4.38/5 Total de 13 Calificaciones
Desarrollador Dan Erat
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://codeberg.org/derat/duoleavemealone
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "duoleavemealone for Duolingo",
    "short_name": "duoleavemealone",
    "version": "0.33",
    "description": "Makes Duolingo more user-friendly",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.duolingo.com\/*"
            ],
            "run_at": "document_start",
            "css": [
                "content.css"
            ],
            "js": [
                "content-import.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*.duolingo.com\/*"
            ],
            "resources": [
                "constants.js",
                "content.js",
                "xhr.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_title": "duoleavemealone"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    }
}