Examine source code of Enjoy Learning Languages

Inspect and view changes in Enjoy Learning Languages 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": 2,
  "name": "Enjoy Learning Languages",
  "description": "ELL: Enjoy Learning Languages with Netflix and Youtube",
  "version": "1.1.0",
  "icons": {
    "16": "assets/icon-16.png",
    "48": "assets/icon-48.png",
    "128": "assets/icon-128.png",
    "240": "assets/icon-240.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "assets/icon-16.png",
      "48": "assets/icon-48.png",
      "128": "assets/icon-128.png",
      "240": "assets/icon-240.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*",
        "https://*.netflix.com/*"
      ],
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "permissions": [
    "storage",
    "tts",
    "https://video.google.com/*",
    "https://clients5.google.com/*",
    "https://glosbe.com/*",
    "https://*.languagisfun.com/*",
    "https://cdn.paddle.com/paddle/paddle.js"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "pages/*",
    "assets/*",
    "css/*",
    "fonts/*",
    "data/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}