HBO Max Extended: tools to fix HBO
Useful tool to fix your HBO Max watching experience: adjust playback speed, hide mouse cursor, rotate screen, make custom subtitles.
Τι είναι το HBO Max Extended: tools to fix HBO;
Το HBO Max Extended: tools to fix HBO είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον BestChromeExtensions, και η κύρια λειτουργία του είναι "Useful tool to fix your HBO Max watching experience: adjust playback speed, hide mouse cursor, rotate screen, make custom subtitles.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης HBO Max Extended: tools to fix HBO
Λήψη αρχείων επέκτασης HBO Max Extended: tools to fix HBO σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Be in the driver's seat 🚗 of your viewing experience! HBO Max Extended is a great tool 🔧 which unifies multiple functionalities in one easy-to-use extension and gives you more control 🎮 over the HBO Max platform.
[Works also with MAX in US services🇺🇸]
Now you're able to:
Turn the cursor off in the full screen mode ❌🖱️
Speed up ⏫ or slow down ⏬ the playback speed
Rotate the screen 🔄
Customize subtitles 📝
All you need to do is add the HBO Max Extended extension to your browser 🌐, run the control panel 🕹️, choose the options you're interested in and enjoy watching content tailored to your personal viewing preferences 📺. It's as simple as that! ✔️
❗*Disclaimer: All product and company names are trademarks ™️ or registered trademarks ®️ of their respective holders. This extension holds no association or affiliation with them or any third-party companies.*❗ Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| ID | pbgnkecgdngdnlepfhmejeedabnaemhf |
| Επίσημο URL | https://chromewebstore.google.com/detail/hbo-max-extended-tools-to/pbgnkecgdngdnlepfhmejeedabnaemhf |
| Περιγραφή | Useful tool to fix your HBO Max watching experience: adjust playback speed, hide mouse cursor, rotate screen, make custom subtitles. |
| Μέγεθος Αρχείου | 187 KB |
| Αριθμός Εγκαταστάσεων | 3,991 |
| Τρέχουσα Έκδοση | 1.3.25 |
| Τελευταία Ενημέρωση | 2024-03-04 |
| Ημερομηνία Δημοσίευσης | 2022-03-08 |
| Αξιολόγηση | 3.25/5 Συνολικά 28 Αξιολογήσεις |
| Προγραμματιστής | BestChromeExtensions |
| Ηλεκτρονικό ταχυδρομείο | [email protected] |
| Τύπος Πληρωμής | free |
| Ιστότοπος Επέκτασης | https://vodextended.com/hbo/ |
| URL της Σελίδας Πολιτικής Απορρήτου | https://www.vodextended.com/privacy_policy |
| Υποστηριζόμενες Γλώσσες | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "HBO Max Extended: tools to fix HBO",
"description": "Useful tool to fix your HBO Max watching experience: adjust playback speed, hide mouse cursor, rotate screen, make custom subtitles.",
"version": "1.3.25",
"manifest_version": 3,
"permissions": [
"storage",
"unlimitedStorage"
],
"host_permissions": [
"*:\/\/*.hbomax.com\/*",
"*:\/\/*.max.com\/*"
],
"action": {
"default_icon": "hbo-extended.png"
},
"content_scripts": [
{
"js": [
"options.js",
"extensionEngine.js",
"injectedEngine.js",
"hbomax.min.js"
],
"css": [
"injected.css",
"modalFrame.css",
"otherCssFromExtension.css"
],
"matches": [
"*:\/\/*.hbomax.com\/*"
]
},
{
"js": [
"options.js",
"extensionEngine.js",
"injectedEngine.js",
"max.min.js"
],
"css": [
"injected.css",
"modalFrame.css",
"otherCssFromExtension.css"
],
"matches": [
"*:\/\/*.max.com\/*"
]
}
],
"icons": {
"128": "hbo-extended.png"
},
"web_accessible_resources": [
{
"resources": [
"hbo-extended.png",
"bubble.svg",
"times-solid.svg",
"play_default.png"
],
"matches": [
"*:\/\/*.hbomax.com\/*",
"*:\/\/*.max.com\/*"
]
}
],
"background": {
"service_worker": "hboExtensionBackground.js"
}
} | |