Better Netflix

Better Netflix

"Better Netflix" adds the following features to Netflix: - Ultrawide display support (21:9 aspect ratio) - Zoom in and out of the video - Show the elapsed time of the video - Disable mouse movement - Statistics

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Better Netflix",
  "version": "1.9.3",
  "author": "Konstantin Müller",
  "description": "Adds various features to Netflix like support for ultrawide displays (21:9 aspect ratio).",
  "icons": {
    "48": "resources/icon.svg",
    "96": "resources/icon.svg",
    "128": "resources/icon.svg"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.netflix.com/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "main.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options/options.html"
  },
  "permissions": [
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "57.0"
    }
  }
}