Examine source code of [LIPSS-Beta] Learn a new language!

Inspect and view changes in [LIPSS-Beta] Learn a new language! 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": "[LIPSS-Beta] Learn a new language!",
  "version": "0.1.2.1",
  "homepage_url": "https://lipss.app/",
  "description": "Easily learn, improve and practice your new language skills through Netflix movies and series with dual subtitles!",
  "default_locale": "en",
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "icons/favicon-16x16.png",
    "32": "icons/favicon-32x32.png",
    "48": "icons/favicon-32x32.png",
    "128": "icons/favicon-128x128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "LIPSS Learn a new language easily!",
    "default_icon": {
      "19": "icons/favicon-16x16.png",
      "38": "icons/favicon-32x32.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/watch?*",
        "*://www.netflix.com/*"
      ],
      "js": [
        "js/content-script.js"
      ],
      "css": [
        "css/content-script.ed281b10.css"
      ],
      "all_frames": true,
      "run_at": "document_idle"
    }
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+L",
        "mac": "Command+Shift+L",
        "chromeos": "Ctrl+Shift+U",
        "linux": "Ctrl+Shift+J"
      }
    }
  },
  "options_ui": {
    "page": "options.html"
  },
  "content_security_policy": "script-src 'self' ; object-src 'self'",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}