Anti-flickering/flashing fix for Netflix

Anti-flickering/flashing fix for Netflix

My mid-2015 MacBook Pro has white flashes and stuttering when watching Netflix with subtitles on. This fixes that for me.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Anti-flickering/flashing fix for Netflix",
  "description": "My mid-2015 MacBook Pro has white flashes and stuttering when watching Netflix with subtitles on. This fixes that for me.",
  "version": "1.0.0",
  "icons": {
    "512": "icon512.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.netflix.com/*"
      ],
      "css": [
        "netflix-fix.css"
      ]
    }
  ]
}