F1 TV Large Player

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

F1 TV Large Player là gì?

F1 TV Large Player là một tiện ích mở rộng Chrome được phát triển bởi dwoods0001, và tính năng chính của nó là "Makes the video player on F1TV larger without needing to go full-screen".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng F1 TV Large Player

Tải xuống các tệp mở rộng F1 TV Large Player dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên F1 TV Large Player F1 TV Large Player
ID dlaemaaokckckhljgoooidebjcdefnfb
URL Chính Thức https://chromewebstore.google.com/detail/f1-tv-large-player/dlaemaaokckckhljgoooidebjcdefnfb
Mô tả Makes the video player on F1TV larger without needing to go full-screen
Kích Thước Tệp 1.22 MB
Số Lần Cài Đặt 44
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2023-07-09
Ngày Phát Hành 2023-07-09
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển dwoods0001
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}