vttlive
Add subtitles from internet as VTT tracks to HTML5 video element on the page
Was ist vttlive?
vttlive ist eine Chrome-Erweiterung, die von stt entwickelt wurde, und ihr Hauptmerkmal ist "Add subtitles from internet as VTT tracks to HTML5 video element on the page".
Erweiterungsscreenshots
vttlive-Erweiterungs-CRX-Datei herunterladen
Laden Sie vttlive-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. :) Grundlegende Informationen zur Erweiterung
| Name | |
| ID | bnlbkeoehifnpknkegfjnhiaoechbnkj |
| Offizielle URL | https://chromewebstore.google.com/detail/vttlive/bnlbkeoehifnpknkegfjnhiaoechbnkj |
| Beschreibung | Add subtitles from internet as VTT tracks to HTML5 video element on the page |
| Dateigröße | 61.77 KB |
| Installationsanzahl | 539 |
| Aktuelle Version | 0.1.2 |
| Letztes Update | 2015-07-31 |
| Veröffentlichungsdatum | 2015-07-31 |
| Bewertung | 2.25/5 Insgesamt 4 Bewertungen |
| Entwickler | stt |
| Zahlungsart | free |
| Erweiterungswebsite | http://vtt.herokuapp.com/ |
| Unterstützte Sprachen | 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
}
} | |