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" } } |