Netflix Skip Intro

Netflix Skip Intro

Auto-skip intro on supported Netflix series

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Netflix Skip Intro",
  "version": "0.1.4",
  "description": "Auto-skip intro on supported Netflix series",
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Netflix Skip Intro"
  },
  "content_scripts": [
    {
      "js": [
        "netflix-skip-intro.user.js"
      ],
      "matches": [
        "https://www.netflix.com/*"
      ],
      "run_at": "document_start"
    }
  ]
}