Netflix Auto Skip

Netflix Auto Skip

Ever been so lazy that you can't even be troubled to hit the "Skip Intro" button while watching Netflix? Have you been sitting on…

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 Auto Skip",
  "short_name": "Auto Skip",
  "version": "1.0.2",
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Netflix",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "background.js"
      ],
      "matches": [
        "https://www.netflix.com/*"
      ],
      "run_at": "document_start"
    }
  ]
}