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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension automatically extracts the download link for a Mediasite video"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Mediasite Utility for XMUM एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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\/" ] } |