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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}