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はStefanによって開発されたChromeの拡張機能で、その主な機能は「Open websites with VLC. You must install the vlc:// protocol handler as well. You should use this together with playlist parsers.」です。

拡張機能のスクリーンショット

screenshot

Open with VLC拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    ]
}