Videojs Webextension
Use video.js rather than downloading, or using the native player to play video.
什么是Videojs Webextension?
Videojs Webextension是由in7h33nd开发的Chrome扩展程序,该扩展的主要功能是“Use video.js rather than downloading, or using the native player to play video.”。
扩展截图
下载Videojs Webextension扩展crx文件
下载Videojs Webextension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Use Video.js to enhance your browsers native video playback! Features: * Adds support for playing m3u8 playlists natively * Options to turn support on or off * options to turn autoplay on or off Future Features * re-write other web players and html players with video.js * add support for more formats that are not natively supported
扩展基本信息
名称 | Videojs Webextension |
ID | cebdpbolebkmgidigfffifoemdcbhibf |
官方URL | https://chromewebstore.google.com/detail/videojs-webextension/cebdpbolebkmgidigfffifoemdcbhibf |
简介 | Use video.js rather than downloading, or using the native player to play video. |
文件大小 | 485 KB |
安装次数 | 3,101 |
当前版本 | 1.3.2 |
更新时间 | 2016-07-18 |
上架时间 | 2016-07-18 |
评分 | 4.89/5 共9次评分 |
开发者 | in7h33nd |
付费类型 | free |
扩展官网 | https://github.com/BrandonOCasey/videojs-chrome-extension |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "applications": { "gecko": { "id": "[email protected]" } }, "name": "Videojs Webextension", "version": "1.3.2", "description": "Use video.js rather than downloading, or using the native player to play video.", "author": "Brandon Casey", "homepage_url": "https:\/\/github.com\/BrandonOCasey\/videojs-webextension", "background": { "scripts": [ "background\/index.js" ], "persistent": true }, "icons": { "16": "img\/videojs-logo-16.png", "48": "img\/videojs-logo-48.png", "128": "img\/videojs-logo-128.png" }, "browser_action": { "default_title": "videojs-webextension", "default_popup": "popup\/index.html" }, "options_ui": { "page": "options\/index.html", "chrome_style": true }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "content_scripts": [ { "js": [ "client\/index.js" ], "css": [ "client\/index.css" ], "run_at": "document_end", "matches": [ "*:\/\/*\/*.m3u8", "*:\/\/*\/*.m3u8?*" ] } ], "permissions": [ "storage", "webRequest", "webRequestBlocking", "*:\/\/*\/*.m3u8", "*:\/\/*\/*.m3u8?*" ] } |