Apple TV SubStyler : customize subtitles

Extension to customize captions and subtitles on Apple TV. Change text size, font, color and add background.

Что такое Apple TV SubStyler : customize subtitles?

Apple TV SubStyler : customize subtitles - это расширение Chrome, разработанное Streaming Extensions, и его основная функция - "Extension to customize captions and subtitles on Apple TV. Change text size, font, color and add background.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Apple TV SubStyler : customize subtitles

Скачайте файлы расширений Apple TV SubStyler : customize subtitles в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Wake up your inner artist and express your creativity by customizing AppleTV+ subtitle style. 
Even though you usually don’t use movie captions, you may consider starting after checking out all the settings this extension has to offer.

Now you’re able to:

- Choose custom text color,🌈
- Adjust text size,📏
- Add text outline and choose its color,🌈
- Add text background, choose its color and adjust the opacity🌈
- Choose font family🔤

Feeling artistic? Here’s another bonus: all the colors can be chosen either from a built-in color picker or by entering RGB value, creating almost endless style possibilities. Take the subtitle customization to the next level with AppleTV+ SubStyler and let your imagination run wild!!

Too many options? Worry not! Check out some basic settings, such as text size and background.

All you need to do is add AppleTV+ Substyler extension to your browser, manage available options in the control panel and adjust subtitles to your own 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.**❗                    

Основная информация о расширении

Название Apple TV SubStyler : customize subtitles Apple TV SubStyler : customize subtitles
ID hikhcmplkoncldjfabbdaodmlkogeocm
Официальный URL https://chromewebstore.google.com/detail/apple-tv-substyler-custom/hikhcmplkoncldjfabbdaodmlkogeocm
Описание Extension to customize captions and subtitles on Apple TV. Change text size, font, color and add background.
Размер файла 25.32 KB
Количество установок 236
Текущая Версия 1.0.3
Последнее Обновление 2024-01-31
Дата публикации 2023-01-12
Рейтинг 3.67/5 Всего 3 оценок
Разработчик Streaming Extensions
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Apple TV SubStyler : customize subtitles",
    "description": "Extension to customize captions and subtitles on Apple TV. Change text size, font, color and add background.",
    "version": "1.0.3",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.tv.apple.com\/*"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": "Apple128SubStyler.png"
    },
    "content_scripts": [
        {
            "js": [
                "options.js",
                "engine.js"
            ],
            "matches": [
                "*:\/\/*.tv.apple.com\/*"
            ]
        }
    ],
    "icons": {
        "36": "Apple36SubStyler.png",
        "128": "Apple128SubStyler.png"
    },
    "background": {
        "service_worker": "background.js"
    }
}