NflxIntroSkip (Netflix Intro Skip)

NflxIntroSkip (Netflix Intro Skip)

Automatically skip intros in the Netflix web-player

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "NflxIntroSkip",
  "description": "Automatically skip intros in the Netflix web-player",
  "version": "1.0.0",
  "manifest_version": 2,
  "name": "NflxIntroSkip (Netflix Intro Skip)",
  "homepage_url": "https://github.com/gmertes/NflxIntroSkip",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "permissions": [
    "https://www.netflix.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.netflix.com/*"
      ],
      "js": [
        "content.min.js"
      ],
      "run_at": "document_start"
    }
  ]
}