Open with VLC

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

¿Qué es Open with VLC?

Open with VLC es una extensión de Chrome desarrollada por Stefan, y su función principal es "Open websites with VLC. You must install the vlc:// protocol handler as well. You should use this together with playlist parsers.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Open with VLC

Descarga archivos de extensión Open with VLC en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Open websites with VLC. You must install the vlc:// protocol handler as well: https://github.com/stefansundin/vlc-protocol

You should use this together with VLC playlist parsers, e.g: https://addons.videolan.org/p/1167220/

Please do not use it if you don't understand the above.

You can right-click on links, iframes, and audio/video elements, and use the "Open with VLC" menu item.                    

Información Básica de la Extensión

Nombre Open with VLC Open with VLC
ID jcccmhdgkfinhddlhpahoeofmdlljglh
URL Oficial https://chromewebstore.google.com/detail/open-with-vlc/jcccmhdgkfinhddlhpahoeofmdlljglh
Descripción Open websites with VLC. You must install the vlc:// protocol handler as well. You should use this together with playlist parsers.
Tamaño del Archivo 8.19 KB
Cantidad de Instalaciones 15,343
Versión Actual 1.4.1
Última Actualización 2020-10-01
Fecha de Publicación 2018-05-25
Calificación 4.60/5 Total de 5 Calificaciones
Desarrollador Stefan
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/stefansundin/open-with-vlc
Idiomas Soportados en
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"
    ]
}