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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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?*" ] } |