F1 TV Large Player

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

Vad är F1 TV Large Player?

F1 TV Large Player är en Chrome-tillägg utvecklad av dwoods0001, och dess huvudfunktion är "Makes the video player on F1TV larger without needing to go full-screen".

Tilläggsskärmbilder

screenshot

Ladda ner F1 TV Large Player-förlängningens CRX-fil

Ladda ner F1 TV Large Player-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn F1 TV Large Player F1 TV Large Player
ID dlaemaaokckckhljgoooidebjcdefnfb
Officiell webbadress https://chromewebstore.google.com/detail/f1-tv-large-player/dlaemaaokckckhljgoooidebjcdefnfb
Beskrivning Makes the video player on F1TV larger without needing to go full-screen
Filstorlek 1.22 MB
Antal Installationer 44
Aktuell Version 1.0.0
Senast Uppdaterad 2023-07-09
Publiceringsdatum 2023-07-09
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare dwoods0001
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}