Anki-leo - LinguaLeo dictionary export

Anki-leo - LinguaLeo dictionary export

Export your Lingualeo dictionary into CSV file compatible with Anki

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_manifest_name__",
  "short_name": "Anki-leo",
  "description": "__MSG_manifest_description__",
  "version": "4.0.3",
  "author": "Kosta Korenkov <[email protected]>",
  "default_locale": "en",
  "permissions": [
    "http://lingualeo.com/",
    "https://lingualeo.com/",
    "downloads",
    "background",
    "webNavigation"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "icons/16x16.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://lingualeo.com/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "leo-export.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    "js/index.js"
  ]
}