F1 TV Large Player

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

O que é F1 TV Large Player?

F1 TV Large Player é uma extensão do Chrome desenvolvida por dwoods0001, e sua principal característica é "Makes the video player on F1TV larger without needing to go full-screen".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão F1 TV Large Player

Baixe arquivos de extensão F1 TV Large Player no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome F1 TV Large Player F1 TV Large Player
ID dlaemaaokckckhljgoooidebjcdefnfb
URL Oficial https://chromewebstore.google.com/detail/f1-tv-large-player/dlaemaaokckckhljgoooidebjcdefnfb
Descrição Makes the video player on F1TV larger without needing to go full-screen
Tamanho do Arquivo 1.22 MB
Contagem de Instalações 44
Versão Atual 1.0.0
Última Atualização 2023-07-09
Data de Publicação 2023-07-09
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor dwoods0001
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}