Mediasite Utility for XMUM
This extension automatically extracts the download link for a Mediasite video
Qu'est-ce que Mediasite Utility for XMUM ?
Mediasite Utility for XMUM est une extension Chrome développée par Jerry Wang, et sa fonction principale est "This extension automatically extracts the download link for a Mediasite video".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Mediasite Utility for XMUM
Téléchargez les fichiers d'extension Mediasite Utility for XMUM au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Mediasite Utility for XMUM |
ID | encdibphpbcflikohhlfbbkcdllejbcg |
URL Officiel | https://chromewebstore.google.com/detail/mediasite-utility-for-xmu/encdibphpbcflikohhlfbbkcdllejbcg |
Description | This extension automatically extracts the download link for a Mediasite video |
Taille du Fichier | 166 KB |
Nombre d'Installations | 372 |
Version Actuelle | 1.4 |
Dernière Mise à Jour | 2020-12-06 |
Date de Publication | 2020-04-18 |
Évaluation | 3.75/5 Total 4 Évaluations |
Développeur | Jerry Wang |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Flyingblu/XMUM-Mediasite-downloader |
Langues Prises en Charge | 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\/" ] } |