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"입니다.
확장 프로그램 스크린샷
F1 TV Large Player 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |