Duolingo Word Bank Dnd

Enables the drag'n'drop of words in the word-bank answers on Duolingo.

Duolingo Word Bank Dndคืออะไร?

Duolingo Word Bank Dnd เป็นส่วนขยายของ Chrome ที่พัฒนาโดย blmage และคุณลักษณะหลักของมันคือ "Enables the drag'n'drop of words in the word-bank answers on Duolingo."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Duolingo Word Bank Dnd

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

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

                        For more detailed information, a quick demo and screenshots, or if you have any support request, visit the development page of the extension here:
https://github.com/blmage/duolingo-word-bank-dnd

[Important update]

Now that Duolingo natively supports dragging and dropping words, this extension should only be needed if you want to:
- soften the "flying" word animation,
- use keyboard shortcuts to reorder words.

[Features]

By default, Duolingo does not allow reorganizing the words added to answers using the word bank. 

As a result, when sentences are long, making just a few changes can quickly become tedious, because it means you'll have to remove and add back a bunch of unrelated words.

The extension fixes this by allowing you to drag'n'drop words in your answers at any time.

[Keyboard shortcuts]

When a word bank is active (and no other extension has the focus), use:
    - the [ ← ] / [ → ] arrows to select a word,
    - the [ ← ] / [ → ] arrows while holding [ Ctrl ] to move the selected word around in the answer (release [ Ctrl ] to apply the changes),
    - [ Del ] to remove the selected word from the answer,
    - [ Backspace ] to remove the last word of the answer.

[Limitations]

The extension is deeply tied to the inner workings of Duolingo, meaning that significant changes on their side could (temporarily) break it. If that happens, you can either:
    - wait for me to fix it (you can open an issue on the support page if there is none about it yet),
    - if you're a developer, try to fix it yourself, then open a related PR on the development page.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Duolingo Word Bank Dnd Duolingo Word Bank Dnd
ID dfpfeeojcakkdfiglfcccdlhdfejcmkg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/duolingo-word-bank-dnd/dfpfeeojcakkdfiglfcccdlhdfejcmkg
คำอธิบาย Enables the drag'n'drop of words in the word-bank answers on Duolingo.
ขนาดไฟล์ 50.15 KB
จำนวนการติดตั้ง 523
เวอร์ชันปัจจุบัน 2.3.1
อัปเดตครั้งล่าสุด 2023-11-01
วันที่เผยแพร่ 2020-07-01
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา blmage
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/blmage/duolingo-word-bank-dnd
URL หน้าช่วยเหลือ https://github.com/blmage/duolingo-word-bank-dnd/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Duolingo Word Bank Dnd",
    "version": "2.3.1",
    "description": "Enables the drag'n'drop of words in the word-bank answers on Duolingo.",
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/*.duolingo.com\/"
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.duolingo.com\/*"
            ],
            "js": [
                "src\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "page_action": {
        "browser_style": true,
        "default_popup": "pages\/popup.html",
        "default_icon": "icons\/icon_48.png"
    },
    "web_accessible_resources": [
        "assets\/css\/ui.css",
        "src\/observer.js",
        "src\/ui.js"
    ],
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png",
        "256": "icons\/icon_256.png",
        "512": "icons\/icon_512.png"
    },
    "manifest_version": 2
}