F1 TV Large Player

F1 TV Large Player

Makes the video player on F1TV larger without needing to go full-screen

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "F1 TV Large Player",
  "version": "1.0.1",
  "description": "Makes the video player on F1TV larger without needing to go full-screen",
  "author": "[email protected]",
  "host_permissions": [
    "https://f1tv.formula1.com/detail/*"
  ],
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "tabs"
  ],
  "action": {
    "default_icon": "logo.png"
  },
  "content_scripts": [
    {
      "js": [
        "f1tvlargeplayer.js"
      ],
      "matches": [
        "https://f1tv.formula1.com/detail/*"
      ]
    }
  ],
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  }
}