Babbel2Anki

Exports and syncs Babbel Review dictionary to Anki Deck. Required Anki Connect plugin.

Babbel2Ankiคืออะไร?

Babbel2Anki เป็นส่วนขยายของ Chrome ที่พัฒนาโดย gordon.pav และคุณลักษณะหลักของมันคือ "Exports and syncs Babbel Review dictionary to Anki Deck. Required Anki Connect plugin."

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

screenshot
screenshot

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

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

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

                        Chrome Extension which imports and syncs Babbel vocabulary to Anki Desktop. Supports customising deck and card template names for syncing, tags. Auto-syncing is WIP, stay tuned :) 

Instructions on how to connect to Anki:
https://github.com/pavelgordon/babbel2anki-chrome-extension                    

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

ชื่อ Babbel2Anki Babbel2Anki
ID dnnognkhllcinkeimdhdchjggploankm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/babbel2anki/dnnognkhllcinkeimdhdchjggploankm
คำอธิบาย Exports and syncs Babbel Review dictionary to Anki Deck. Required Anki Connect plugin.
ขนาดไฟล์ 91.18 KB
จำนวนการติดตั้ง 136
เวอร์ชันปัจจุบัน 1.0.3
อัปเดตครั้งล่าสุด 2022-07-29
วันที่เผยแพร่ 2020-04-30
คะแนน 3.75/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา gordon.pav
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/pavelgordon/babbel2anki-chrome-extension
URL หน้าช่วยเหลือ https://github.com/pavelgordon/babbel2anki-chrome-extension
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "1.0.3",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon.png",
        "128": "images\/icon.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "libs\/polyfill.min.js",
            "scripts\/background.js",
            "scripts\/hot-reload.js"
        ]
    },
    "permissions": [
        "activeTab",
        "http:\/\/my.babbel.com\/*",
        "https:\/\/my.babbel.com\/*",
        "background",
        "notifications",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/my.babbel.com\/*",
                "http:\/\/my.babbel.com\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "css": [
                "styles\/main.css"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "omnibox": {
        "keyword": "OMNIBOX-KEYWORD"
    },
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "popup.html",
        "default_title": "Exports and syncs Babbel Dictionary with Anki"
    },
    "web_accessible_resources": [
        "images\/icon-48.png"
    ]
}