Mediasite Utility for XMUM
This extension automatically extracts the download link for a Mediasite video
Vad är Mediasite Utility for XMUM?
Mediasite Utility for XMUM är en Chrome-tillägg utvecklad av Jerry Wang, och dess huvudfunktion är "This extension automatically extracts the download link for a Mediasite video".
Tilläggsskärmbilder
Ladda ner Mediasite Utility for XMUM-förlängningens CRX-fil
Ladda ner Mediasite Utility for XMUM-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | Mediasite Utility for XMUM |
ID | encdibphpbcflikohhlfbbkcdllejbcg |
Officiell webbadress | https://chromewebstore.google.com/detail/mediasite-utility-for-xmu/encdibphpbcflikohhlfbbkcdllejbcg |
Beskrivning | This extension automatically extracts the download link for a Mediasite video |
Filstorlek | 166 KB |
Antal Installationer | 372 |
Aktuell Version | 1.4 |
Senast Uppdaterad | 2020-12-06 |
Publiceringsdatum | 2020-04-18 |
Betyg | 3.75/5 Totalt 4 Betyg |
Utvecklare | Jerry Wang |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/Flyingblu/XMUM-Mediasite-downloader |
Stödda Språk | 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\/" ] } |