Nextflix

Nextflix

Creates a simple shortcut to play the next netflix episode available. Just click "N" to go to the next one.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Nextflix",
  "author": "Diego Pazos <[email protected]>",
  "version": "1.2",
  "description": "Creates a simple shortcut to play the next netflix episode available. Just click \"N\" to go to the next one.",
  "icons": {
    "64": "icon-64.png",
    "128": "icon-128.png",
    "256": "icon-256.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.netflix.com/*"
      ],
      "js": [
        "extension.js"
      ]
    }
  ],
  "manifest_version": 3
}