Examine source code of Lingo Layer - Language Learning

Inspect and view changes in Lingo Layer - Language Learning source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_extName__",
  "short_name": "__MSG_extShortName__",
  "description": "__MSG_extDescription__",
  "version": "1.0.10",
  "version_name": "1.0.10",
  "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": "support@lingolayer.com",
  "background": {
    "service_worker": "scripts/background/service-worker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "world": "MAIN",
      "js": [
        "scripts/main/ll.js"
      ],
      "matches": [
        "https://*.lingolayer.com/*"
      ],
      "run_at": "document_start"
    },
    {
      "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"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "i18n/*",
        "scripts/ui/*",
        "images/*.png"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}