Canvas Video Enhancer
Improves the University of Auckland lecture recording playback interface.
O que é Canvas Video Enhancer?
Canvas Video Enhancer é uma extensão do Chrome desenvolvida por ChineseElectricPanda, e sua principal característica é "Improves the University of Auckland lecture recording playback interface.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Canvas Video Enhancer
Baixe arquivos de extensão Canvas Video Enhancer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Canvas Video Enhancer |
ID | ifmencfdmeefbminibdligiflakibpoh |
URL Oficial | https://chromewebstore.google.com/detail/canvas-video-enhancer/ifmencfdmeefbminibdligiflakibpoh |
Descrição | Improves the University of Auckland lecture recording playback interface. |
Tamanho do Arquivo | 132 KB |
Contagem de Instalações | 2,400 |
Versão Atual | 0.2.0.1 |
Última Atualização | 2017-05-28 |
Data de Publicação | 2017-05-27 |
Classificação | 4.24/5 Total de 51 Avaliações |
Desenvolvedor | ChineseElectricPanda |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/ChineseElectricPanda/canvas-video-enhancer |
URL da Página de Ajuda | https://github.com/ChineseElectricPanda/canvas-video-enhancer/issues |
Idiomas Suportados | 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\/*" ] } |