SpeedUp: Netflix, Prime videos

SpeedUp: Netflix, Prime videos

Controls the speed for online streaming for Netflix, Amazon Prime, Youtube, Twitch, Reddit and ALL others.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SpeedUp: Netflix, Prime videos",
  "short_name": "SpeedUp",
  "version": "3.0",
  "description": "Controls the speed for online streaming for Netflix, Amazon Prime, Youtube, Twitch, Reddit and ALL others.",
  "permissions": [
    "storage",
    "*://*/*"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon.png"
  },
  "background": {
    "scripts": [
      "js/jquery-3.4.1.min.js",
      "js/background.js"
    ],
    "persistent": false
  },
  "icons": {
    "128": "icon.png"
  },
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery-3.4.1.min.js",
        "js/content.js"
      ]
    }
  ]
}