Video Speed Controller

Video Speed Controller

Video Speed Controller for netflix video, primevideo, hotstar, etc.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "3.1.5",
  "description": "__MSG_desName__",
  "permissions": [
    "storage",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "manifest_version": 2,
  "default_locale": "en",
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "mac": "Alt+Y",
        "linux": "Ctrl+Shift+J",
        "windows": "Ctrl+Shift+Y"
      }
    },
    "left": {
      "suggested_key": {
        "default": "Ctrl+Shift+Left",
        "mac": "Command+Shift+Left"
      },
      "description": "Decrease Speed"
    },
    "right": {
      "suggested_key": {
        "default": "Ctrl+Shift+Right",
        "mac": "Command+Shift+Right"
      },
      "description": "Increase Speed"
    }
  }
}