Netflix Pause Removal

Netflix Pause Removal

Remove the pause between netflix episodes

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 Pause Removal",
  "version": "1.2.1",
  "author": "Prescott Gallagher",
  "description": "Remove the pause between netflix episodes",
  "browser_action": {
    "default_icon": "icon.png"
  },
  "short_name": "Netflix PR",
  "content_scripts": [
    {
      "matches": [
        "*://www.netflix.com/*"
      ],
      "js": [
        "background.js"
      ]
    }
  ]
}