Speeder for Paramount+: adjust playback speed

Speeder for Paramount+: adjust playback speed

Extension allows to adjust the playback speed on Paramount Plus according to preference

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "version": "1.2.11",
  "manifest_version": 3,
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*.paramountplus.com/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "assets/Paramount128.png"
  },
  "content_scripts": [
    {
      "js": [
        "value.js",
        "engine.js",
        "paramount.min.js"
      ],
      "css": [
        "modalFrame.css"
      ],
      "matches": [
        "*://*.paramountplus.com/*"
      ]
    }
  ],
  "icons": {
    "38": "assets/Paramount38.png",
    "128": "assets/Paramount128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/Paramount38.png",
        "assets/times-solid.svg"
      ],
      "matches": [
        "*://*.paramountplus.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}