Video Captions

Video Captions

Что такое Video Captions?

Video Captions - это расширение Chrome, разработанное codeacwars, и его основная функция - "Video Captions".

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

screenshot

Скачать файл CRX расширения Video Captions

Скачайте файлы расширений Video Captions в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        As we all know, Youtube supports extended subtitles. Both the creator of the video and our ordinary viewers can create and add subtitles to the video (requires the creator's permission), so this allows many popular videos to have multilingual subtitles. Video Captions is an extension that allows the Video player to display subtitles in two languages at the same time. This plugin is very convenient for many users who like to watch videos on YouTube! Just like many American dramas where subtitles have suppressed subtitles, display double subtitles directly in your favorite videos.

######## Supported Websites ########

* YouTube


########## Bugs ##########

Please DON'T report bugs by a review, Through HERE:
- [email protected]                    

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

Название Video Captions Video Captions
ID acdlhldnonjkjomgdieacckbdcmjbpdo
Официальный URL https://chromewebstore.google.com/detail/video-captions/acdlhldnonjkjomgdieacckbdcmjbpdo
Описание Video Captions
Размер файла 12.03 KB
Количество установок 149
Текущая Версия 0.0.3
Последнее Обновление 2020-10-12
Дата публикации 2020-10-05
Разработчик codeacwars
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Captions",
    "manifest_version": 2,
    "version": "0.0.3",
    "description": "Video Captions",
    "author": "ACWars",
    "permissions": [
        "tabs",
        "storage"
    ],
    "icons": {
        "128": "images\/tab-icon.png"
    },
    "browser_action": {
        "default_title": "Video captions"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/youtube\/content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "js\/youtube\/background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "js\/youtube\/injected.js",
        "js\/youtube\/xhook.min.js"
    ]
}