Lingo Layer - Language Learning

Lingo Layer - Language Learning

Learn a language while you watch Netflix videos! Displays learning & translation subtitles concurrently.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Lingo Layer - Language Learning",
  "description": "Learn a language while you watch Netflix videos! Displays learning & translation subtitles concurrently.",
  "version": "1.0.2",
  "version_name": "1.0.2",
  "minimum_chrome_version": "116",
  "icons": {
    "16": "images/logo-16.png",
    "32": "images/logo-32.png",
    "48": "images/logo-48.png",
    "128": "images/logo-128.png"
  },
  "action": {
    "default_icon": "images/logo-128.png"
  },
  "author": "[email protected]",
  "background": {
    "service_worker": "scripts/background/service-worker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "world": "MAIN",
      "js": [
        "scripts/main/netflix.js"
      ],
      "matches": [
        "https://*.netflix.com/*"
      ],
      "run_at": "document_start"
    },
    {
      "css": [
        "scripts/ui/index.css"
      ],
      "js": [
        "scripts/ui/index.js"
      ],
      "matches": [
        "https://*.netflix.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "homepage_url": "https://www.lingolayer.com",
  "host_permissions": [
    "https://*.lingolayer.com/*",
    "https://*.netflix.com/*",
    "https://*.nflxvideo.net/*"
  ],
  "incognito": "spanning",
  "permissions": [
    "storage",
    "webNavigation"
  ],
  "short_name": "Lingo Layer",
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "scripts/ui/*",
        "images/*.png"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}