vttlive

vttlive

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

Merlin
Additional files are visible only to premium users

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
  }
}