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 |
官方網址 | 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?*" ] } |