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.”。
扩展截图
下载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. 扩展基本信息
| 名称 | |
| 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"
]
} | |