Netflix Skipper

Netflix Skipper

Automatically skip Netflix intros, recaps, and next episode prompts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Netflix Skipper",
  "description": "Automatically skip Netflix intros, recaps, and next episode prompts.",
  "author": "Ran Ribenzaft",
  "version": "1.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "src/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "src/content_script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "activeTab"
  ],
  "action": {
    "default_popup": "src/popup.html",
    "default_icon": {
      "16": "images/netflix-skipper-16.png",
      "32": "images/netflix-skipper-32.png",
      "48": "images/netflix-skipper-48.png",
      "128": "images/netflix-skipper-128.png"
    }
  },
  "icons": {
    "16": "images/netflix-skipper-16.png",
    "32": "images/netflix-skipper-32.png",
    "48": "images/netflix-skipper-48.png",
    "128": "images/netflix-skipper-128.png"
  }
}