F1 TV Large Player
Makes the video player on F1TV larger without needing to go full-screen
Что такое F1 TV Large Player?
F1 TV Large Player - это расширение Chrome, разработанное dwoods0001, и его основная функция - "Makes the video player on F1TV larger without needing to go full-screen".
Снимки экрана расширения
Скачать файл CRX расширения F1 TV Large Player
Скачайте файлы расширений F1 TV Large Player в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | F1 TV Large Player |
ID | dlaemaaokckckhljgoooidebjcdefnfb |
Официальный URL | https://chromewebstore.google.com/detail/f1-tv-large-player/dlaemaaokckckhljgoooidebjcdefnfb |
Описание | Makes the video player on F1TV larger without needing to go full-screen |
Размер файла | 1.22 MB |
Количество установок | 44 |
Текущая Версия | 1.0.0 |
Последнее Обновление | 2023-07-09 |
Дата публикации | 2023-07-09 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | dwoods0001 |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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" } } |