Remove HBO loading dots

Remove HBO loading dots

HBO player has a bug that makes the loading dots appear continuously. This extension simply removes them.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Remove HBO loading dots",
  "description": "HBO player has a bug that makes the loading dots appear continuously. This extension simply removes them.",
  "version": "1.0",
  "permissions": [
    "https://play.hbomax.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://play.hbomax.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "content-script.js"
      ]
    }
  ],
  "manifest_version": 2
}