Skipper

Automatically skips intros, recaps, and moves to the next episode on supported streaming sites. WARNING USES MANIFEST V3 ONLY USE ON NEWER BROWSER VERSIONS!
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Skipper",
  "version": "1.0",
  "description": "Automatically skips intros, recaps, and moves to the next episode on supported streaming sites.",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*.netflix.com/*",
    "*://*.disneyplus.com/*",
    "*://*.hulu.com/*"
  ],
  "action": {
    "default_title": "Skipper",
    "default_popup": "popup/popup.html"
  },
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.netflix.com/*",
        "*://*.disneyplus.com/*",
        "*://*.hulu.com/*"
      ],
      "js": [
        "content-scripts/content-script.js"
      ]
    }
  ],
  "icons": {
    "48": "icons/icon48.png",
    "96": "icons/icon96.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{933ca259-d87c-4c7b-97fb-e91acdd02475}"
    }
  }
}