Open with VLC

Open with VLC

Open websites with VLC. You must install the vlc:// protocol handler as well. You should use this together with playlist parsers.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Open with VLC",
  "version": "1.4.1",
  "description": "Open websites with VLC. You must install the vlc:// protocol handler as well. You should use this together with playlist parsers.",
  "homepage_url": "https://github.com/stefansundin/open-with-vlc",
  "author": "Stefan Sundin",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "browser_action": {
    "default_icon": {
      "16": "icon.png",
      "19": "icon.png",
      "38": "icon.png"
    },
    "default_title": "Open page with VLC",
    "default_popup": "popup.html"
  },
  "commands": {
    "open-vlc": {
      "suggested_key": {
        "default": "Alt+Shift+V"
      },
      "description": "Open page with VLC"
    }
  },
  "permissions": [
    "activeTab",
    "tabs",
    "contextMenus",
    "storage"
  ]
}