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