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"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ 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 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
    }
}