F1 TV Large Player
Makes the video player on F1TV larger without needing to go full-screen
What is F1 TV Large Player?
F1 TV Large Player is a Chrome extension developed by dwoods0001, and its main feature is "Makes the video player on F1TV larger without needing to go full-screen".
Extension Screenshots
Download F1 TV Large Player Extension CRX File
Download F1 TV Large Player extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | F1 TV Large Player |
ID | dlaemaaokckckhljgoooidebjcdefnfb |
Official URL | https://chromewebstore.google.com/detail/f1-tv-large-player/dlaemaaokckckhljgoooidebjcdefnfb |
Description | Makes the video player on F1TV larger without needing to go full-screen |
File Size | 1.22 MB |
Installation Count | 44 |
Current Version | 1.0.0 |
Last Updated | 2023-07-09 |
Publish Date | 2023-07-09 |
Rating | 5.00/5 Total 2 Ratings |
Developer | dwoods0001 |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |