Babbel2Anki

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

什麼是Babbel2Anki?

Babbel2Anki是由gordon.pav開發的Chrome擴展程式,該擴展的主要功能是“Exports and syncs Babbel Review dictionary to Anki Deck. Required Anki Connect plugin.”。

擴展截圖

screenshot
screenshot

下載Babbel2Anki擴展crx文件

下載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
官方網址 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"
    ]
}