Mediasite Utility for XMUM
This extension automatically extracts the download link for a Mediasite video
什么是Mediasite Utility for XMUM?
Mediasite Utility for XMUM是由Jerry Wang开发的Chrome扩展程序,该扩展的主要功能是“This extension automatically extracts the download link for a Mediasite video”。
扩展截图
下载Mediasite Utility for XMUM扩展crx文件
下载Mediasite Utility for XMUM扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | Mediasite Utility for XMUM |
ID | encdibphpbcflikohhlfbbkcdllejbcg |
官方URL | https://chromewebstore.google.com/detail/mediasite-utility-for-xmu/encdibphpbcflikohhlfbbkcdllejbcg |
简介 | This extension automatically extracts the download link for a Mediasite video |
文件大小 | 166 KB |
安装次数 | 372 |
当前版本 | 1.4 |
更新时间 | 2020-12-06 |
上架时间 | 2020-04-18 |
评分 | 3.75/5 共4次评分 |
开发者 | Jerry Wang |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/Flyingblu/XMUM-Mediasite-downloader |
支持的语言 | 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\/" ] } |