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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension automatically extracts the download link for a Mediasite video"입니다.
확장 프로그램 스크린샷
Mediasite Utility for XMUM 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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\/" ] } |