F1 TV Large Player

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

Wat is F1 TV Large Player?

F1 TV Large Player is een Chrome-extensie ontwikkeld door dwoods0001, en de belangrijkste functie is "Makes the video player on F1TV larger without needing to go full-screen".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie F1 TV Large Player

Download F1 TV Large Player-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Are you tired of having to view F1TV in either a tiny window or full screen? Well now you don't have to.

This extension makes the player as large as possible with the available space on your screen. You can even hide the header row for the largest possible player.                    

Basisinformatie over de Extensie

Naam F1 TV Large Player F1 TV Large Player
ID dlaemaaokckckhljgoooidebjcdefnfb
Officiële URL https://chromewebstore.google.com/detail/f1-tv-large-player/dlaemaaokckckhljgoooidebjcdefnfb
Beschrijving Makes the video player on F1TV larger without needing to go full-screen
Bestandsgrootte 1.22 MB
Aantal Installaties 44
Huidige Versie 1.0.0
Laatst Bijgewerkt 2023-07-09
Publicatiedatum 2023-07-09
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar dwoods0001
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "F1 TV Large Player",
    "version": "1.0.0",
    "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"
    }
}