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是由dwoods0001開發的Chrome擴展程式,該擴展的主要功能是“Makes the video player on F1TV larger without needing to go full-screen”。

擴展截圖

screenshot

下載F1 TV Large Player擴展crx文件

下載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 F1 TV Large Player
ID dlaemaaokckckhljgoooidebjcdefnfb
官方網址 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"
    }
}