Easy Speed Drag Netflix

Easy Speed Drag Netflix

Click & drag left or right on Netflix videos to adjust the playback speed.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Easy Speed Drag Netflix",
  "version": "1.47",
  "description": "Click & drag left or right on Netflix videos to adjust the playback speed.",
  "permissions": [
    "activeTab",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "*://www.netflix.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.netflix.com/*"
      ],
      "css": [
        "styles.css"
      ],
      "js": [
        "utils.js",
        "content.js",
        "handlers.js"
      ],
      "all_frames": true,
      "run_at": "document_idle"
    }
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "images/16.png",
    "32": "images/32.png",
    "48": "images/48.png",
    "64": "images/64.png",
    "128": "images/128.png"
  }
}