Netflix AutoSkip: Skip intro and outro

Netflix AutoSkip: Skip intro and outro

In Netflix, Automatically skip the intro & Play the next episode without waiting

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Netflix AutoSkip: Skip intro and outro",
  "short_name": "Netflix AutoSkip",
  "version": "3.4",
  "manifest_version": 2,
  "description": "In Netflix, Automatically skip the intro & Play the next episode without waiting",
  "icons": {
    "128": "icon.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "*://*.netflix.com/*",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.netflix.com/*"
      ],
      "js": [
        "js/watch.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}