SignUp - Sign Language for Netflix & Disney+

SignUp - Sign Language for Netflix & Disney+

This extension allows the user to overlay videos of American Sign Language interpreting onto Disney+ and Netflix videos.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "manifest_version": 3,
  "version": "2.4.7",
  "name": "SignUp - Sign Language for Netflix & Disney+",
  "description": "This extension allows the user to overlay videos of American Sign Language interpreting onto Disney+ and Netflix videos.",
  "background": {
    "service_worker": "build/background.bundle.js",
    "scripts": [
      "build/background.bundle.js"
    ]
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "img/icon128.png"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.disneyplus.com/*",
        "https://*.netflix.com/*",
        "https://*.peacocktv.com/*",
        "https://*.hotstar.com/*",
        "https://*.youtube.com/*"
      ],
      "js": [
        "jquery-1.10.2.js",
        "jquery-ui.min.js",
        "build/contentScript.bundle.js",
        "/youtube/page_script.js",
        "/youtube/iframe_api.js",
        "/youtube/www-widgetapi.js"
      ],
      "css": [
        "build/content.styles.css"
      ],
      "run_at": "document_end"
    }
  ],
  "devtools_page": "build/devtools.html",
  "web_accessible_resources": [
    {
      "resources": [
        "nativeVideo/video.html",
        "build/content.styles.css",
        "img/*",
        "src/images/*",
        "fonts/*",
        "/youtube/page_script.js",
        "/youtube/iframe_api.js",
        "/youtube/www-widgetapi.js"
      ],
      "matches": [
        "https://*.disneyplus.com/*",
        "https://*.netflix.com/*",
        "https://*.peacocktv.com/*",
        "https://*.hotstar.com/*",
        "https://*.youtube.com/*"
      ]
    }
  ]
}