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"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ 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 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\/"
    ]
}