Canvas Video Enhancer
Improves the University of Auckland lecture recording playback interface.
Canvas Video Enhancer क्या है?
Canvas Video Enhancer ChineseElectricPanda द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Improves the University of Auckland lecture recording playback interface."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Canvas Video Enhancer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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\/*" ] } |