Apple TV Extended: boost your viewing
Boost your Apple TV viewing experience: adjust speed, skip intros & recaps, hide spoilers.
Vad är Apple TV Extended: boost your viewing?
Apple TV Extended: boost your viewing är en Chrome-tillägg utvecklad av Browser Extensions, och dess huvudfunktion är "Boost your Apple TV viewing experience: adjust speed, skip intros & recaps, hide spoilers.".
Tilläggsskärmbilder
Ladda ner Apple TV Extended: boost your viewing-förlängningens CRX-fil
Ladda ner Apple TV Extended: boost your viewing-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This extension offers many tools to help you watch your favorite Apple TV+ videos even better! Be in the driver's seat of your viewing experience! AppleTV+ Extended is a great tool that unifies multiple functionalities in one easy-to-use extension and gives you more control over the AppleTV+ platform. Now you're able to: ⏩ Speed up or slow down your playback speed ⏭️ Automatically skip recaps, intros, and go to the next episode 🔁 Rotate and zoom the video 🎨 Customize subtitle style 📺 Watch video content in a picture in picture mode In order to use the extension you need to hover over one of two status icons that you can find in the top right corner of home page or bottom left corner of the player, depending on where you are. Then click on the gear icon and control panel will appear, giving you access to all of extension features. All you need to do is add the AppleTV+ Extended extension to your browser, choose from available options in the control panel, and enjoy watching content tailored to your personal viewing preferences. It's as simple as that Disclaimer : AppleTV+ is a trademark of Apple Inc. This website & extension hold no association or affiliation with AppleTV+ or any third-party companies.
Grundläggande Information om Tillägg
Namn | Apple TV Extended: boost your viewing |
ID | kgnlclloniaiajampcjnhnpoknbdhcbl |
Officiell webbadress | https://chromewebstore.google.com/detail/apple-tv-extended-boost-y/kgnlclloniaiajampcjnhnpoknbdhcbl |
Beskrivning | Boost your Apple TV viewing experience: adjust speed, skip intros & recaps, hide spoilers. |
Filstorlek | 100 KB |
Antal Installationer | 910 |
Aktuell Version | 1.0.7 |
Senast Uppdaterad | 2024-02-29 |
Publiceringsdatum | 2022-03-31 |
Betyg | 3.00/5 Totalt 3 Betyg |
Utvecklare | Browser Extensions |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://vodextended.com/ |
URL till Sekretesspolicy Sidan | https://www.vodextended.com/privacy_policy |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Apple TV Extended: boost your viewing", "description": "Boost your Apple TV viewing experience: adjust speed, skip intros & recaps, hide spoilers.", "version": "1.0.7", "manifest_version": 3, "permissions": [ "storage" ], "host_permissions": [ "*:\/\/*.apple.com\/*" ], "action": { "default_icon": "appletv_extended.png" }, "content_scripts": [ { "js": [ "options.js", "injectedEngine.js", "extensionEngine.js", "appletv.min.js" ], "css": [ "injected.css", "modalFrame.css", "otherCssFromExtension.css" ], "matches": [ "*:\/\/*.apple.com\/*" ] } ], "icons": { "128": "appletv_extended.png" }, "web_accessible_resources": [ { "resources": [ "appletv_extended.png", "bubble.svg", "times-solid.svg" ], "matches": [ "*:\/\/*.apple.com\/*" ] } ], "background": { "service_worker": "background.js" } } |