chatGPT for Disney+

chatGPT for Disney+

Get Disney+ recommendations from chatGPT based on your watching history

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "chatGPT for Disney+",
  "description": "Get Disney+ recommendations from chatGPT based on your watching history",
  "version": "1.0.0",
  "action": {
    "default_popup": "index.html",
    "default_title": "Open the popup"
  },
  "icons": {
    "16": "chat128.png",
    "48": "chat128.png",
    "128": "chat128.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "*://*.disneyplus.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "contentWindow.js"
      ],
      "matches": [
        "*://*.netflix.com/*"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  }
}