Netflix Watched Marker

Netflix Watched Marker

Easily mark the Netflix movies you watched as watched.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Netflix Watched Marker",
  "description": "Easily mark the Netflix movies you watched as watched.",
  "author": "Giray Bal",
  "manifest_version": 3,
  "version": "1.1.2",
  "content_scripts": [
    {
      "css": [
        "static/css/my.css"
      ],
      "js": [
        "static/js/jquery.min.js",
        "nf/content.js"
      ],
      "matches": [
        "*://*.netflix.com/*"
      ]
    }
  ],
  "icons": {
    "16": "nf/logos/16.png",
    "48": "nf/logos/48.png",
    "128": "nf/logos/128.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*.netflix.com/*"
  ],
  "action": {
    "default_popup": "popup_nf.html",
    "default_title": "Netflix Watched Marker"
  }
}