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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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
}