Netflix Ad Skipper

Netflix Ad Skipper

Fast forward Netflix Ads and save $$!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Netflix Ad Skipper",
  "version": "0.0.0.3",
  "description": "Fast forward Netflix Ads and save $$!",
  "manifest_version": 3,
  "permissions": [],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://www.netflix.com/*",
        "https://www.netflix.com/watch/*",
        "http://www.netflix.com/watch/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "assets/icon16.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  }
}