Mediasite Utility for XMUM

This extension automatically extracts the download link for a Mediasite video

Apa itu Mediasite Utility for XMUM?

Mediasite Utility for XMUM adalah ekstensi Chrome yang dikembangkan oleh Jerry Wang, dan fitur utamanya adalah "This extension automatically extracts the download link for a Mediasite video".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Mediasite Utility for XMUM

Unduh file ekstensi Mediasite Utility for XMUM dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Mediasite Utility for XMUM Mediasite Utility for XMUM
ID encdibphpbcflikohhlfbbkcdllejbcg
URL Resmi https://chromewebstore.google.com/detail/mediasite-utility-for-xmu/encdibphpbcflikohhlfbbkcdllejbcg
Deskripsi This extension automatically extracts the download link for a Mediasite video
Ukuran File 166 KB
Jumlah Instalasi 372
Versi Saat Ini 1.4
Terakhir Diperbarui 2020-12-06
Tanggal Publikasi 2020-04-18
Penilaian 3.75/5 Total 4 Penilaian
Pengembang Jerry Wang
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/Flyingblu/XMUM-Mediasite-downloader
Bahasa yang Didukung 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\/"
    ]
}