Double Subtitles for HBO Max by MovieLingo
Extension allows for displaying additional subtitles above the standard HBO ones.
Что такое Double Subtitles for HBO Max by MovieLingo?
Double Subtitles for HBO Max by MovieLingo - это расширение Chrome, разработанное movielingo.app, и его основная функция - "Extension allows for displaying additional subtitles above the standard HBO ones.".
Снимки экрана расширения
Скачать файл CRX расширения Double Subtitles for HBO Max by MovieLingo
Скачайте файлы расширений Double Subtitles for HBO Max by MovieLingo в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Boost your HBO Max experiences with "Double Subtitles for HBO Max" by Movielingo! 🎬🌐 Do what you love, and learn languages in an easy, enjoyable way. 🎓🌟 Double Subtitles extension allows for displaying additional subtitles above the standard HBO Max ones. Select the language of additional subtitles from the list in extension pop-up window. 📝🔀 Fun, ease, and effectiveness, all in one extension! 😁🚀 Regardless of your level, "Double Subtitles for HBO Max" is your personal language tutor at your fingertips. 👨🏫🌍 How to start? It's simple! 😊 Click on the extension. ➡️ Add it to your Chrome browser. 🔀🖱️ Refresh the HBO Max page. 🔄 That's it! Now, just choose the language you want to learn from extension pop-up window, and start enjoying your learning. 🎉🗣️ Join us and start your multilingual journey today! 🚀🌍 Works also with Max service in US! ❗**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.**❗
Основная информация о расширении
Название | Double Subtitles for HBO Max by MovieLingo |
ID | cnaoacpapmmcfeglkagcndjghgbnmcfe |
Официальный URL | https://chromewebstore.google.com/detail/double-subtitles-for-hbo/cnaoacpapmmcfeglkagcndjghgbnmcfe |
Описание | Extension allows for displaying additional subtitles above the standard HBO ones. |
Размер файла | 48.33 KB |
Количество установок | 514 |
Текущая Версия | 1.0.3 |
Последнее Обновление | 2024-01-18 |
Дата публикации | 2023-11-09 |
Рейтинг | 4.40/5 Всего 5 оценок |
Разработчик | movielingo.app |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://www.movielingo.app/ |
Поддерживаемые языки | de,en,fr,es,pl |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_name__", "description": "__MSG_description__", "version": "1.0.3", "manifest_version": 3, "default_locale": "en", "permissions": [ "storage" ], "host_permissions": [ "*:\/\/*.max.com\/*", "*:\/\/*.hbomax.com\/*", "https:\/\/translate.googleapis.com\/*" ], "action": { "default_popup": "popup.html", "default_icon": "Double128HBO.png" }, "content_scripts": [ { "js": [ "options.js", "engine.js" ], "matches": [ "*:\/\/*.hbomax.com\/*" ], "css": [ "injectedCss.css" ] }, { "js": [ "options.js", "engineMax.js" ], "matches": [ "*:\/\/*.max.com\/*" ], "css": [ "injectedCss.css" ] } ], "icons": { "48": "Double48HBO.png", "128": "Double128HBO.png" }, "background": { "service_worker": "background.js" } } |