Video Captions

Video Captions

¿Qué es Video Captions?

Video Captions es una extensión de Chrome desarrollada por codeacwars, y su función principal es "Video Captions".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Video Captions

Descarga archivos de extensión Video Captions en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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]                    

Información Básica de la Extensión

Nombre Video Captions Video Captions
ID acdlhldnonjkjomgdieacckbdcmjbpdo
URL Oficial https://chromewebstore.google.com/detail/video-captions/acdlhldnonjkjomgdieacckbdcmjbpdo
Descripción Video Captions
Tamaño del Archivo 12.03 KB
Cantidad de Instalaciones 149
Versión Actual 0.0.3
Última Actualización 2020-10-12
Fecha de Publicación 2020-10-05
Desarrollador codeacwars
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    ]
}