PeacockTV MyPicture: custom profile picture

PeacockTV MyPicture: custom profile picture

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

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "PeacockTV MyPicture: custom profile picture",
  "description": "Extension to make a custom Peacock TV profile picture. Personalize your user account and choose your own profile icon.",
  "version": "1.0.4",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "*://*.peacocktv.com/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "PeacockTV36Profile.png"
  },
  "content_scripts": [
    {
      "js": [
        "options.js",
        "engine.js"
      ],
      "matches": [
        "*://*.peacocktv.com/*"
      ]
    }
  ],
  "icons": {
    "36": "PeacockTV36Profile.png",
    "128": "PeacockTV128Profile.png"
  },
  "background": {
    "service_worker": "background.js"
  }
}