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