Duolingo Memo

Remembers and auto-fills your answers on Duolingo.

Τι είναι το Duolingo Memo;

Το Duolingo Memo είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Matías Duhalde, και η κύρια λειτουργία του είναι "Remembers and auto-fills your answers on Duolingo.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Duolingo Memo

Λήψη αρχείων επέκτασης Duolingo Memo σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This extension was originally conceived with the intention of addressing the tediousness of some Legendary Challenges. For each Legendary Challenge (and inside a same unit), the exercise pool is quite reduced, and you're only allowed two mistakes. This makes retrying a Legendary Challenge specially annoying, since you'll most likely have to retype the same answers over and over again. This extension aims to solve that problem by remembering your correct answers and automatically filling the input with the remembered answer.

Legendary challenges contain almost exclusively exercises of type "Translate", that is, those where you must translate the proposed sentence by typing the answer in the input. Nevertheless, the extension has been expanded to support other types of exercises and it will continue to be expanded in the future.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Duolingo Memo Duolingo Memo
ID oibokknlhjginjokcocnilfibocideol
Επίσημο URL https://chromewebstore.google.com/detail/duolingo-memo/oibokknlhjginjokcocnilfibocideol
Περιγραφή Remembers and auto-fills your answers on Duolingo.
Μέγεθος Αρχείου 129 KB
Αριθμός Εγκαταστάσεων 59
Τρέχουσα Έκδοση 0.0.1
Τελευταία Ενημέρωση 2023-07-17
Ημερομηνία Δημοσίευσης 2023-07-17
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Matías Duhalde
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/MatiasDuhalde/duolingo-memo
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/MatiasDuhalde/duolingo-memo/blob/master/README.md#bugs
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Duolingo Memo",
    "version": "0.0.1",
    "description": "Remembers and auto-fills your answers on Duolingo.",
    "icons": {
        "16": "src\/static\/logo\/16x16.png",
        "48": "src\/static\/logo\/48x48.png",
        "128": "src\/static\/logo\/128x128.png",
        "256": "src\/static\/logo\/256x256.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "service-worker-loader.js",
        "type": "module"
    },
    "options_page": "src\/options\/index.html",
    "content_scripts": [
        {
            "js": [
                "assets\/index.ts-loader-24c57198.js"
            ],
            "matches": [
                "https:\/\/www.duolingo.com\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/www.duolingo.com\/*"
            ],
            "resources": [
                "assets\/constants-eac0ef40.js",
                "assets\/_commonjsHelpers-725317a4.js",
                "assets\/index.ts-50d79826.js"
            ],
            "use_dynamic_url": true
        }
    ]
}