Mediasite Utility for XMUM
This extension automatically extracts the download link for a Mediasite video
Mediasite Utility for XMUM là gì?
Mediasite Utility for XMUM là một tiện ích mở rộng Chrome được phát triển bởi Jerry Wang, và tính năng chính của nó là "This extension automatically extracts the download link for a Mediasite video".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Mediasite Utility for XMUM
Tải xuống các tệp mở rộng Mediasite Utility for XMUM dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Mediasite Utility for XMUM |
ID | encdibphpbcflikohhlfbbkcdllejbcg |
URL Chính Thức | https://chromewebstore.google.com/detail/mediasite-utility-for-xmu/encdibphpbcflikohhlfbbkcdllejbcg |
Mô tả | This extension automatically extracts the download link for a Mediasite video |
Kích Thước Tệp | 166 KB |
Số Lần Cài Đặt | 372 |
Phiên Bản Hiện Tại | 1.4 |
Cập Nhật Lần Cuối | 2020-12-06 |
Ngày Phát Hành | 2020-04-18 |
Đánh Giá | 3.75/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | Jerry Wang |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Flyingblu/XMUM-Mediasite-downloader |
Ngôn Ngữ Được Hỗ Trợ | 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\/" ] } |