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」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

Mediasite Utility for XMUM拡張機能のCRXファイルをダウンロード

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
Eメール [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\/"
    ]
}