LingQ Importer

LingQ Importer

Automatically import foreign language content from the web & study it with LingQ's web & mobile language learning apps.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Automatically import foreign language content from the web & study it with LingQ's web & mobile language learning apps.",
  "manifest_version": 3,
  "name": "LingQ Importer",
  "version": "2.3.13",
  "homepage_url": "https://www.lingq.com/",
  "icons": {
    "16": "icons/LingQ-16x16.png",
    "48": "icons/LingQ-48x48.png",
    "64": "icons/LingQ-64x64.png",
    "128": "icons/LingQ-128x128.png"
  },
  "content_scripts": [
    {
      "js": [
        "netflix/contentscript.js",
        "netflix/inject.js"
      ],
      "matches": [
        "https://*.netflix.com/*"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "netflix/worker.js"
      ],
      "matches": [
        "https://*.netflix.com/*"
      ]
    },
    {
      "resources": [
        "version.json"
      ],
      "matches": [
        "https://*.lingq.com/*"
      ]
    }
  ],
  "action": {
    "default_icon": "icons/toolbar-icon.png",
    "default_title": "LingQ",
    "default_popup": "popup.html"
  },
  "host_permissions": [
    "https://www.lingq.com/api/*"
  ],
  "permissions": [
    "activeTab",
    "cookies",
    "storage",
    "scripting"
  ]
}