USYD Echo360 Loader

Chrome extension to load USYD Echo360 videos without Flash

什麼是USYD Echo360 Loader?

USYD Echo360 Loader是由Sidney Alcantara開發的Chrome擴展程式,該擴展的主要功能是“Chrome extension to load USYD Echo360 videos without Flash”。

擴展截圖

screenshot

下載USYD Echo360 Loader擴展crx文件

下載USYD Echo360 Loader擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Update: USYD has updated Echo360 and no longer uses Flash, so this extension is no longer required. It will remain published with a link to the source code.

Loads USYD Echo360 videos without Flash using the native player.

Includes playback speed controls, thumbnail seeking, and instructions to download the video using ffmpeg.

This extension’s source code is available at https://github.com/notseenee/echo360loader if you want to extend it to your university’s Echo360 system.                    

擴展基本資訊

名稱 USYD Echo360 Loader USYD Echo360 Loader
ID hekcgkbebmbmbclcgikaocemhaeafpbf
官方網址 https://chromewebstore.google.com/detail/usyd-echo360-loader/hekcgkbebmbmbclcgikaocemhaeafpbf
簡介 Chrome extension to load USYD Echo360 videos without Flash
檔案大小 187 KB
安裝次數 313
目前版本 1.3.3
更新時間 2019-06-25
上架時間 2019-06-23
評分 4.88/5 共 8 次評分
開發者 Sidney Alcantara
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/notseenee/echo360loader
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "USYD Echo360 Loader",
    "version": "1.3.3",
    "description": "Chrome extension to load USYD Echo360 videos without Flash",
    "author": "Sidney Alcantara",
    "icons": {
        "16": "icon\/icon16.png",
        "48": "icon\/icon48.png",
        "128": "icon\/icon128.png"
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon\/icon16.png",
            "24": "icon\/icon24.png",
            "32": "icon\/icon32.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/view.streaming.sydney.edu.au\/*"
            ],
            "js": [
                "redirect.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "http:\/\/delivery.streaming.sydney.edu.au\/*\/echo_ipad.htm*"
            ],
            "js": [
                "preventRedirect.js",
                "echo360.js",
                "hls.js",
                "contentScript.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "declarativeContent"
    ],
    "manifest_version": 2
}