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."입니다.

확장 프로그램 스크린샷

screenshot

Canvas Video Enhancer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Canvas Video Enhancer 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\/*"
    ]
}