Video Playback Extension

Video Playback Extension

A full-featured video and audio player extension. Control playback speed, skipping, rewinding and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "A full-featured video and audio player extension. Control playback speed, skipping, rewinding and more.",
  "version": "1.0.4",
  "name": "Video Playback Extension",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon34.png"
  },
  "icons": {
    "34": "icon34.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "run_at": "document_idle",
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.bundle.js"
    ]
  },
  "web_accessible_resources": [
    "netflix.bundle.js"
  ],
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "permissions": [
    "storage"
  ],
  "commands": {
    "decrease-playback-rate": {
      "suggested_key": {
        "default": "Ctrl+Shift+1"
      },
      "description": "Decrease Playback Rate By .25"
    },
    "increase-playback-rate": {
      "suggested_key": {
        "default": "Ctrl+Shift+2"
      },
      "description": "Increase Playback Rate By .25"
    },
    "skip-forward": {
      "suggested_key": {
        "default": "Ctrl+Shift+Right"
      },
      "description": "Skip Forward By Set Skip Interval"
    },
    "skip-backward": {
      "suggested_key": {
        "default": "Ctrl+Shift+Left"
      },
      "description": "Skip Backward By Set Skip Interval"
    }
  }
}