Video Player

Video Player

Video player with playlist and gallery. Watch local video files on your PC or Chromecast device!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "2.0.10",
  "manifest_version": 2,
  "minimum_chrome_version": "28",
  "offline_enabled": true,
  "container": [
    "GOOGLE_DRIVE"
  ],
  "api_console_project_id": "860115892612",
  "icons": {
    "16": "assets/icons/icon16.png",
    "48": "assets/icons/icon48.png",
    "128": "assets/icons/icon128.png"
  },
  "app": {
    "background": {
      "scripts": [
        "background.js"
      ]
    }
  },
  "permissions": [
    "*://*/*",
    "storage",
    "notifications",
    "identity",
    "system.memory",
    "fullscreen",
    "fileSystem",
    "webview",
    {
      "mediaGalleries": [
        "read",
        "allAutoDetected"
      ]
    }
  ],
  "file_handlers": {
    "3D files": {
      "types": [
        "video/*"
      ],
      "extensions": [
        "3gp",
        "3gpp",
        "avi",
        "flv",
        "mov",
        "mpeg",
        "mpeg4",
        "mp4",
        "ogg",
        "webm",
        "wmv",
        "m4v",
        "mkv",
        "ogv"
      ],
      "title": "Play Video"
    }
  },
  "oauth2": {
    "client_id": "860115892612-p52mtgmq2pubq3s1tjkpcu8iq1e88rjb.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/drive",
      "https://www.googleapis.com/auth/drive.file"
    ]
  }
}