Autolingo

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

Autolingoคืออะไร?

Autolingo เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kris.brethower และคุณลักษณะหลักของมันคือ "Automatically completes Duolingo lessons so you don't have to!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Autolingo

ดาวน์โหลดไฟล์ส่วนขยาย Autolingo ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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": [
                ""
            ]
        }
    ]
}