vttlive

Add subtitles from internet as VTT tracks to HTML5 video element on the page

¿Qué es vttlive?

vttlive es una extensión de Chrome desarrollada por stt, y su función principal es "Add subtitles from internet as VTT tracks to HTML5 video element on the page".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión vttlive

Descarga archivos de extensión vttlive 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

                        Provides a page action (icon on the address bar) for selected sites (as specified in extension options). When page action is clicked a search is made to podnapisi.net for a subtitle matching the video element on the page or in an iframe.

If a subtitle is found it's added as track element to the video. Meaning that you'll get subtitles to a video that otherwise would have none. :)                    

Información Básica de la Extensión

Nombre vttlive vttlive
ID bnlbkeoehifnpknkegfjnhiaoechbnkj
URL Oficial https://chromewebstore.google.com/detail/vttlive/bnlbkeoehifnpknkegfjnhiaoechbnkj
Descripción Add subtitles from internet as VTT tracks to HTML5 video element on the page
Tamaño del Archivo 61.77 KB
Cantidad de Instalaciones 539
Versión Actual 0.1.2
Última Actualización 2015-07-31
Fecha de Publicación 2015-07-31
Calificación 2.25/5 Total de 4 Calificaciones
Desarrollador stt
Tipo de Pago free
Sitio Web de la Extensión http://vtt.herokuapp.com/
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.1.2",
    "manifest_version": 2,
    "minimum_chrome_version": "38",
    "description": "__MSG_appDescription__",
    "incognito": "split",
    "icons": {
        "128": "images\/cc.png"
    },
    "default_locale": "en",
    "optional_permissions": [],
    "permissions": [
        "storage",
        "activeTab",
        "declarativeContent",
        "http:\/\/www.podnapisi.net\/.*",
        "http:\/\/vtt.herokuapp.com\/.*"
    ],
    "background": {
        "scripts": [
            "scripts\/jquery.min.js",
            "scripts\/background.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "38": "images\/cc.png"
        },
        "default_title": "vttlive",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}