Canvas Video Enhancer
Improves the University of Auckland lecture recording playback interface.
Canvas Video Enhancerとは何ですか?
Canvas Video EnhancerはChineseElectricPandaによって開発されたChromeの拡張機能で、その主な機能は「Improves the University of Auckland lecture recording playback interface.」です。
拡張機能のスクリーンショット
Canvas Video Enhancer拡張機能のCRXファイルをダウンロード
Canvas Video Enhancer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Replaces the default Flash Player for lecture recordings with HTML5 video and adds extra controls for playback speed and playback quality.
Features:
*Playlist for lecture recordings of the same course
*Controls for playback speed and quality
*Insert bookmarks in lecture recordings
*Download recordings with 1 click
*Automatically skips copyright notice at the start of the recording
*Enables better browser compatibility for recordings - Flash Player no longer required
*Adds hotkeys for video control:
-Space plays/pauses the video
-'F' toggles fullscreen mode
-Left and Right arrow keys skips 10 seconds back/forward
-',' and '.' decreases/increases video speed
Changelog:
v0.2.0.1:
-Bugfixes
v0.2.0.0:
-Added playlist functionality
v0.1.2.1:
-Fixed parsing of some URL formats
v0.1.2.0:
-Added bookmarks feature
-Added download button
v0.1.1.2:
-Fixed compatibility with new Canvas player
v0.1.1.1:
-Bugfixes
v0.1.1.0:
-Added logging for watched videos
v0.1.0.1:
-Fixed layout issues when used with Cecil Lecture Downloader
v0.1.0.0:
-New video player interface
-Selected volume is now saved across sessions
v0.0.1.1:
-Bugfixes
v0.0.1.0:
-Added hotkeys
-Selected video quality is now saved across sessions
v0.0.0.1:
-Initial release
GitHub: https://github.com/ChineseElectricPanda/canvas-video-enhancer 拡張機能の基本情報
| 名前 | |
| ID | ifmencfdmeefbminibdligiflakibpoh |
| 公式URL | https://chromewebstore.google.com/detail/canvas-video-enhancer/ifmencfdmeefbminibdligiflakibpoh |
| 説明 | Improves the University of Auckland lecture recording playback interface. |
| ファイルサイズ | 132 KB |
| インストール数 | 2,400 |
| 現在のバージョン | 0.2.0.1 |
| 最終更新日 | 2017-05-28 |
| 公開日 | 2017-05-27 |
| 評価 | 4.24/5 合計 51 レビュー |
| 開発者 | ChineseElectricPanda |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/ChineseElectricPanda/canvas-video-enhancer |
| ヘルプページのURL | https://github.com/ChineseElectricPanda/canvas-video-enhancer/issues |
| 対応言語 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Canvas Video Enhancer",
"description": "Improves the University of Auckland lecture recording playback interface.",
"version": "0.2.0.1",
"permissions": [
"webRequest",
"webRequestBlocking",
"*:\/\/mediastore.auckland.ac.nz\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/mediastore.auckland.ac.nz\/*"
],
"run_at": "document_start",
"js": [
"injector.js"
],
"css": [
"video.css",
"playlist.css",
"font-awesome.min.css"
],
"all_frames": true
}
],
"background": {
"scripts": [
"background.js"
]
},
"web_accessible_resources": [
"video.html",
"video.js",
"playlist.js",
"fonts\/*",
"img\/*"
]
} | |