Netflix Subtitles Reader

Netflix Subtitles Reader

Reads Subtitles Out Loud from Various Video Websites including Netflix, Youtube, Viki, etc.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Netflix Subtitles Reader",
  "version": "2.1",
  "description": "Reads Subtitles Out Loud from Various Video Websites including Netflix, Youtube, Viki, etc.",
  "permissions": [
    "activeTab",
    "declarativeContent",
    "storage"
  ],
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.netflix.com/*",
        "https://*.youtube.com/*",
        "https://*.moviesjoy.to/*",
        "https://*.primevideo.com/*",
        "https://*.amazon.com/*",
        "https://*.animixplay.to/*",
        "https://*.viki.com/*",
        "https://*.hotstar.com/*"
      ],
      "js": [
        "jquery.min.js",
        "main.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/get_started16.png",
      "32": "images/get_started32.png",
      "48": "images/get_started48.png",
      "128": "images/get_started128.png"
    }
  },
  "icons": {
    "16": "images/get_started16.png",
    "32": "images/get_started32.png",
    "48": "images/get_started48.png",
    "128": "images/get_started128.png"
  },
  "manifest_version": 2
}