MyPicture for Disney+: custom profile picture

MyPicture for Disney+: custom profile picture

Extension to make a custom Disney Plus profile picture. Personalize your user account and choose your own profile icon.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "MyPicture for Disney+: custom profile picture",
  "description": "Extension to make a custom Disney Plus profile picture. Personalize your user account and choose your own profile icon.",
  "version": "1.1.9",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "*://*.disneyplus.com/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "Disney36Profile.png"
  },
  "content_scripts": [
    {
      "js": [
        "options.js",
        "engine.js",
        "disney.min.js"
      ],
      "css": [
        "injectedCss.css"
      ],
      "matches": [
        "*://*.disneyplus.com/*"
      ]
    }
  ],
  "icons": {
    "36": "Disney36Profile.png",
    "128": "Disney128Profile.png"
  },
  "background": {
    "service_worker": "background.js"
  }
}