Subtitle Videoplayer

Subtitle Videoplayer

A small video player supporting srt, ass, smi and dfxp subtitles. MKV, AVI AND FLV ARE NOT SUPPORTED CURRENTLY. Please, if…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Subtitle Videoplayer",
  "version": "1.14.0",
  "manifest_version": 2,
  "minimum_chrome_version": "40",
  "icons": {
    "16": "icon.png",
    "128": "icon.png"
  },
  "app": {
    "background": {
      "scripts": [
        "background.js"
      ]
    }
  },
  "file_handlers": {
    "any": {
      "extensions": [
        "aac",
        "mp4",
        "m4a",
        "mp1",
        "mp2",
        "mp3",
        "mpg",
        "mpeg",
        "oga",
        "ogg",
        "wav",
        "webm",
        "m4v",
        "ogv",
        "mkv"
      ]
    }
  },
  "permissions": [
    {
      "fileSystem": [
        "retainEntries",
        "directory"
      ]
    },
    "fullscreen",
    "contextMenus",
    "storage",
    "notifications",
    "webview",
    "http://api.opensubtitles.org/xml-rpc",
    "https://subtitlevideoplayer.appspot.com/",
    "https://www.google-analytics.com/"
  ],
  "offline_enabled": true
}