vttlive

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

O que é vttlive?

vttlive é uma extensão do Chrome desenvolvida por stt, e sua principal característica é "Add subtitles from internet as VTT tracks to HTML5 video element on the page".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão vttlive

Baixe arquivos de extensão vttlive no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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. :)                    

Informações Básicas da Extensão

Nome vttlive vttlive
ID bnlbkeoehifnpknkegfjnhiaoechbnkj
URL Oficial https://chromewebstore.google.com/detail/vttlive/bnlbkeoehifnpknkegfjnhiaoechbnkj
Descrição Add subtitles from internet as VTT tracks to HTML5 video element on the page
Tamanho do Arquivo 61.77 KB
Contagem de Instalações 539
Versão Atual 0.1.2
Última Atualização 2015-07-31
Data de Publicação 2015-07-31
Classificação 2.25/5 Total de 4 Avaliações
Desenvolvedor stt
Tipo de Pagamento free
Site da Extensão http://vtt.herokuapp.com/
Idiomas Suportados 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
    }
}