F1 TV Large Player
Makes the video player on F1TV larger without needing to go full-screen
Qu'est-ce que F1 TV Large Player ?
F1 TV Large Player est une extension Chrome développée par dwoods0001, et sa fonction principale est "Makes the video player on F1TV larger without needing to go full-screen".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension F1 TV Large Player
Téléchargez les fichiers d'extension F1 TV Large Player au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | F1 TV Large Player |
ID | dlaemaaokckckhljgoooidebjcdefnfb |
URL Officiel | https://chromewebstore.google.com/detail/f1-tv-large-player/dlaemaaokckckhljgoooidebjcdefnfb |
Description | Makes the video player on F1TV larger without needing to go full-screen |
Taille du Fichier | 1.22 MB |
Nombre d'Installations | 44 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2023-07-09 |
Date de Publication | 2023-07-09 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | dwoods0001 |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |