Mediasite Utility for XMUM
This extension automatically extracts the download link for a Mediasite video
Что такое Mediasite Utility for XMUM?
Mediasite Utility for XMUM - это расширение Chrome, разработанное Jerry Wang, и его основная функция - "This extension automatically extracts the download link for a Mediasite video".
Снимки экрана расширения
Скачать файл CRX расширения Mediasite Utility for XMUM
Скачайте файлы расширений 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\/" ] } |