vttlive
Add subtitles from internet as VTT tracks to HTML5 video element on the page
Что такое vttlive?
vttlive - это расширение Chrome, разработанное stt, и его основная функция - "Add subtitles from internet as VTT tracks to HTML5 video element on the page".
Снимки экрана расширения
Скачать файл CRX расширения vttlive
Скачайте файлы расширений vttlive в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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. :)
Основная информация о расширении
Название | vttlive |
ID | bnlbkeoehifnpknkegfjnhiaoechbnkj |
Официальный URL | https://chromewebstore.google.com/detail/vttlive/bnlbkeoehifnpknkegfjnhiaoechbnkj |
Описание | Add subtitles from internet as VTT tracks to HTML5 video element on the page |
Размер файла | 61.77 KB |
Количество установок | 539 |
Текущая Версия | 0.1.2 |
Последнее Обновление | 2015-07-31 |
Дата публикации | 2015-07-31 |
Рейтинг | 2.25/5 Всего 4 оценок |
Разработчик | stt |
Тип оплаты | free |
Официальный сайт расширения | http://vtt.herokuapp.com/ |
Поддерживаемые языки | 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 } } |