Mediasite Utility for XMUM
This extension automatically extracts the download link for a Mediasite video
What is Mediasite Utility for XMUM?
Mediasite Utility for XMUM is a Chrome extension developed by Jerry Wang, and its main feature is "This extension automatically extracts the download link for a Mediasite video".
Extension Screenshots
Download Mediasite Utility for XMUM Extension CRX File
Download Mediasite Utility for XMUM extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This is a plugin to help XMUM students to use moodle system more easily. It has three main features: 1. extract the direct link to videos published on XMUM Moodle system. 2. show the watched percentage of videos 3. fix the "Access denied" error encountered on the site. It also has an experimental feature to report view of whole videos in one click. For detailed instruction: https://github.com/Flyingblu/XMUM-Mediasite-downloader
Extension Basic Information
Name | Mediasite Utility for XMUM |
ID | encdibphpbcflikohhlfbbkcdllejbcg |
Official URL | https://chromewebstore.google.com/detail/mediasite-utility-for-xmu/encdibphpbcflikohhlfbbkcdllejbcg |
Description | This extension automatically extracts the download link for a Mediasite video |
File Size | 166 KB |
Installation Count | 372 |
Current Version | 1.4 |
Last Updated | 2020-12-06 |
Publish Date | 2020-04-18 |
Rating | 3.75/5 Total 4 Ratings |
Developer | Jerry Wang |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/Flyingblu/XMUM-Mediasite-downloader |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Mediasite Utility for XMUM", "description": "This extension automatically extracts the download link for a Mediasite video", "version": "1.4", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "background": { "page": "background.html", "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/l.xmu.edu.my\/course\/view.php?id=*" ], "js": [ "script\/moodle_script.js" ] } ], "browser_action": { "default_popup": "popup.html" }, "permissions": [ "activeTab", "cookies", "downloads", "storage", "contextMenus" ], "optional_permissions": [ "https:\/\/xmum.mediasitecloud.jp\/", "https:\/\/l.xmu.edu.my\/", "https:\/\/mymedia.xmu.edu.cn\/" ] } |