Netflix Dual subtitle for learning languages

Netflix Dual subtitle for learning languages

Display two subtitle languages at the same time.Rewind by a few seconds.Rewind to the start of phrases.Pause at the end of phrases

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "NetflixDualSubtitle",
  "description": "Display two subtitle languages at the same time.Rewind by a few seconds.Rewind to the start of phrases.Pause at the end of phrases",
  "version": "2.1.8",
  "name": "Netflix Dual subtitle for learning languages",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://www.netflix.com/*"
  ],
  "background": {
    "service_worker": "background.min.js"
  },
  "action": {
    "default_icon": "images/icon128.png",
    "default_popup": "settings.html"
  },
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png",
    "512": "images/icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.netflix.com/*"
      ],
      "js": [
        "content.min.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "insert.min.js",
        "insert_to_head.min.js"
      ],
      "matches": [
        "https://www.netflix.com/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://www.netflix.com/*"
    ]
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmYoCqXTRVQDcSpvvM03856pC7FVGKUIHDJhVC6e9Yxltlc9QMZy++RSwDeMZCg5PZ4poX0IxW+6hgPsFnSt6TETVT+nYi4t5k/lR0pqZZxM1KafIJXD/6+UP3hjob45vwWfOMRgeRz5DEssQo+llfIoK5EuAEkKbfB22k67hekiHv8nj/ifhlIItEH79zMII6Uyh372qRJXj9g0HB3l2chmwYyyXxGxEnILf5IIrHe+s8ihgGPrjTq1z8tptoDSINLar3WDTzXgx9RV6rRjXxfAgvnwjJP2FgJhZQ2F5agy76aCOc+7c7AxIXzOGk1dTaZDFuOITKo584oiQpLa0gwIDAQAB"
}