Autolingo

Automatically completes Duolingo lessons so you don't have to!

Autolingo क्या है?

Autolingo kris.brethower द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically completes Duolingo lessons so you don't have to!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Autolingo एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Why learn a language when Autolingo can learn it for you! 🔥

This extension adds a button to the top-right of every lesson. If you click this button, it will fully complete the lesson for you.

If you are in the middle of the lesson, you can open the extension and click "Solve & Skip" to complete the current question or "Solve" to just solve it but stay on the question so you can see the answer.

Hotkeys:
CTRL+ENTER for "Solve & Skip"
ALT+ENTER for "Solve"
ALT+S for "Skip without solving"

This is likely to break if Duolingo updates their website, so please let me know if it's not working so I can fix it!                    

एक्सटेंशन की मूल जानकारी

नाम Autolingo Autolingo
ID jppnahnlneednhaefhbfgpamgbecpfdd
आधिकारिक URL https://chrome.google.com/webstore/detail/autolingo/jppnahnlneednhaefhbfgpamgbecpfdd
विवरण Automatically completes Duolingo lessons so you don't have to!
फ़ाइल का आकार 197 KB
स्थापना संख्या 10,000
वर्तमान संस्करण 2022.03.18
अंतिम अपडेट 2022-03-18
प्रकाशन तिथि 2020-10-16
रेटिंग 4.43/5 कुल 103 रेटिंग्स
डेवलपर kris.brethower
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Autolingo",
    "version": "2022.03.18",
    "manifest_version": 3,
    "description": "Automatically completes Duolingo lessons so you don't have to!",
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/autolingo\/jppnahnlneednhaefhbfgpamgbecpfdd",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.duolingo.com\/*"
            ],
            "js": [
                "content_scripts\/init.js"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "60": "images\/icon-60.png",
        "128": "images\/icon-128.png",
        "256": "images\/icon-256.png"
    },
    "action": {
        "default_title": "Autolingo",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}