vttlive
Add subtitles from internet as VTT tracks to HTML5 video element on the page
Vad är vttlive?
vttlive är en Chrome-tillägg utvecklad av stt, och dess huvudfunktion är "Add subtitles from internet as VTT tracks to HTML5 video element on the page".
Tilläggsskärmbilder
Ladda ner vttlive-förlängningens CRX-fil
Ladda ner vttlive-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. :) Grundläggande Information om Tillägg
| Namn | |
| ID | bnlbkeoehifnpknkegfjnhiaoechbnkj |
| Officiell webbadress | https://chromewebstore.google.com/detail/vttlive/bnlbkeoehifnpknkegfjnhiaoechbnkj |
| Beskrivning | Add subtitles from internet as VTT tracks to HTML5 video element on the page |
| Filstorlek | 61.77 KB |
| Antal Installationer | 539 |
| Aktuell Version | 0.1.2 |
| Senast Uppdaterad | 2015-07-31 |
| Publiceringsdatum | 2015-07-31 |
| Betyg | 2.25/5 Totalt 4 Betyg |
| Utvecklare | stt |
| Betalningssätt | free |
| Tilläggswebbplats | http://vtt.herokuapp.com/ |
| Stödda Språk | 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
}
} | |