vttlive

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

什麼是vttlive?

vttlive是由stt開發的Chrome擴展程式,該擴展的主要功能是“Add subtitles from internet as VTT tracks to HTML5 video element on the page”。

擴展截圖

screenshot

下載vttlive擴展crx文件

下載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 vttlive
ID bnlbkeoehifnpknkegfjnhiaoechbnkj
官方網址 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
    }
}