Mediasite Utility for XMUM
This extension automatically extracts the download link for a Mediasite video
Hvad er Mediasite Utility for XMUM?
Mediasite Utility for XMUM er en Chrome-udvidelse udviklet af Jerry Wang, og dens hovedfunktion er "This extension automatically extracts the download link for a Mediasite video".
Udvidelsesskærmbilleder
Download Mediasite Utility for XMUM-udvidelses-CRX-fil
Download Mediasite Utility for XMUM-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Mediasite Utility for XMUM |
ID | encdibphpbcflikohhlfbbkcdllejbcg |
Officiel URL | https://chromewebstore.google.com/detail/mediasite-utility-for-xmu/encdibphpbcflikohhlfbbkcdllejbcg |
Beskrivelse | This extension automatically extracts the download link for a Mediasite video |
Filstørrelse | 166 KB |
Antal Installationer | 372 |
Nuværende Version | 1.4 |
Senest Opdateret | 2020-12-06 |
Udgivelsesdato | 2020-04-18 |
Bedømmelse | 3.75/5 Samlet 4 Bedømmelser |
Udvikler | Jerry Wang |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/Flyingblu/XMUM-Mediasite-downloader |
Understøttede Sprog | 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\/" ] } |