Open with VLC

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

Что такое Open with VLC?

Open with VLC - это расширение Chrome, разработанное Stefan, и его основная функция - "Open websites with VLC. You must install the vlc:// protocol handler as well. You should use this together with playlist parsers.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Open with VLC

Скачайте файлы расширений Open with VLC в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Open with VLC Open with VLC
ID jcccmhdgkfinhddlhpahoeofmdlljglh
Официальный URL https://chromewebstore.google.com/detail/open-with-vlc/jcccmhdgkfinhddlhpahoeofmdlljglh
Описание Open websites with VLC. You must install the vlc:// protocol handler as well. You should use this together with playlist parsers.
Размер файла 8.19 KB
Количество установок 15,343
Текущая Версия 1.4.1
Последнее Обновление 2020-10-01
Дата публикации 2018-05-25
Рейтинг 4.60/5 Всего 5 оценок
Разработчик Stefan
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/stefansundin/open-with-vlc
Поддерживаемые языки 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"
    ]
}