Videojs Webextension
Use video.js rather than downloading, or using the native player to play video.
Videojs Webextension là gì?
Videojs Webextension là một tiện ích mở rộng Chrome được phát triển bởi in7h33nd, và tính năng chính của nó là "Use video.js rather than downloading, or using the native player to play video.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Videojs Webextension
Tải xuống các tệp mở rộng Videojs Webextension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Videojs Webextension |
ID | cebdpbolebkmgidigfffifoemdcbhibf |
URL Chính Thức | https://chromewebstore.google.com/detail/videojs-webextension/cebdpbolebkmgidigfffifoemdcbhibf |
Mô tả | Use video.js rather than downloading, or using the native player to play video. |
Kích Thước Tệp | 485 KB |
Số Lần Cài Đặt | 3,101 |
Phiên Bản Hiện Tại | 1.3.2 |
Cập Nhật Lần Cuối | 2016-07-18 |
Ngày Phát Hành | 2016-07-18 |
Đánh Giá | 4.89/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | in7h33nd |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/BrandonOCasey/videojs-chrome-extension |
Ngôn Ngữ Được Hỗ Trợ | 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?*" ] } |