Binge Stream

Binge Stream

Extension to auto click 'Skip Recap' and 'Skip Intro' on streaming pages, when they pop up

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Binge Stream",
  "version": "23.11.12.2130",
  "description": "Extension to auto click 'Skip Recap' and 'Skip Intro' on streaming pages, when they pop up",
  "homepage_url": "https://github.com/s-weigand/binge-stream",
  "manifest_version": 3,
  "minimum_chrome_version": "99",
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "action": {
    "default_icon": {
      "128": "icon.png"
    },
    "default_popup": "options/options.html",
    "default_title": "Binge-Stream Options"
  },
  "content_scripts": [
    {
      "js": [
        "content_scripts/netflix.js"
      ],
      "matches": [
        "*://netflix.com/**",
        "*://*.netflix.com/**"
      ]
    },
    {
      "js": [
        "content_scripts/amazon.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "include_globs": [
        "*://amazon.*/gp/video/**",
        "*://*.amazon.*/gp/video/**",
        "*://amazon.*/*/dp/**",
        "*://*.amazon.*/*/dp/**"
      ]
    },
    {
      "js": [
        "content_scripts/youtube.js"
      ],
      "matches": [
        "*://www.youtube.com/**"
      ]
    }
  ],
  "options_ui": {
    "page": "options/options.html"
  }
}