Mediasite Utility for XMUM

This extension automatically extracts the download link for a Mediasite video

Wat is Mediasite Utility for XMUM?

Mediasite Utility for XMUM is een Chrome-extensie ontwikkeld door Jerry Wang, en de belangrijkste functie is "This extension automatically extracts the download link for a Mediasite video".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Mediasite Utility for XMUM

Download Mediasite Utility for XMUM-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Mediasite Utility for XMUM Mediasite Utility for XMUM
ID encdibphpbcflikohhlfbbkcdllejbcg
Officiële URL https://chromewebstore.google.com/detail/mediasite-utility-for-xmu/encdibphpbcflikohhlfbbkcdllejbcg
Beschrijving This extension automatically extracts the download link for a Mediasite video
Bestandsgrootte 166 KB
Aantal Installaties 372
Huidige Versie 1.4
Laatst Bijgewerkt 2020-12-06
Publicatiedatum 2020-04-18
Beoordeling 3.75/5 Totaal 4 Beoordelingen
Ontwikkelaar Jerry Wang
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/Flyingblu/XMUM-Mediasite-downloader
Ondersteunde Talen 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\/"
    ]
}