LingvoTV

LingvoTV

Learn languages while watching movies online. Translate words and grow your vocabulary on the go.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LingvoTV",
  "version": "0.7.0",
  "manifest_version": 2,
  "description": "Learn languages while watching movies online. Translate words and grow your vocabulary on the go.",
  "browser_action": {
    "default_popup": "popup.html"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "src/js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.netflix.com/*",
        "*://*.youtube.com/*",
        "*://*.amazon.com/*",
        "*://*.amazon.com.au/*",
        "*://*.amazon.com.br/*",
        "*://*.amazon.com.ca/*",
        "*://*.amazon.com.cn/*",
        "*://*.amazon.com.fr/*",
        "*://*.amazon.de/*",
        "*://*.amazon.in/*",
        "*://*.amazon.it/*",
        "*://*.amazon.jp/*",
        "*://*.amazon.com.mx/*",
        "*://*.amazon.nl/*",
        "*://*.amazon.co.uk/*",
        "*://*.amazon.se/*"
      ],
      "js": [
        "src/js/content.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    }
  ],
  "icons": {
    "16": "src/img/logo-16x16.png",
    "48": "src/img/logo-48x48.png",
    "128": "src/img/logo-128x128.png"
  },
  "permissions": [],
  "web_accessible_resources": [],
  "homepage_url": "https://lingvo.tv"
}