Mediasite Utility for XMUM

This extension automatically extracts the download link for a Mediasite video

O que é Mediasite Utility for XMUM?

Mediasite Utility for XMUM é uma extensão do Chrome desenvolvida por Jerry Wang, e sua principal característica é "This extension automatically extracts the download link for a Mediasite video".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Mediasite Utility for XMUM

Baixe arquivos de extensão Mediasite Utility for XMUM no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Mediasite Utility for XMUM Mediasite Utility for XMUM
ID encdibphpbcflikohhlfbbkcdllejbcg
URL Oficial https://chromewebstore.google.com/detail/mediasite-utility-for-xmu/encdibphpbcflikohhlfbbkcdllejbcg
Descrição This extension automatically extracts the download link for a Mediasite video
Tamanho do Arquivo 166 KB
Contagem de Instalações 372
Versão Atual 1.4
Última Atualização 2020-12-06
Data de Publicação 2020-04-18
Classificação 3.75/5 Total de 4 Avaliações
Desenvolvedor Jerry Wang
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/Flyingblu/XMUM-Mediasite-downloader
Idiomas Suportados 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\/"
    ]
}