USYD Echo360 Loader

Chrome extension to load USYD Echo360 videos without Flash

USYD Echo360 Loader là gì?

USYD Echo360 Loader là một tiện ích mở rộng Chrome được phát triển bởi Sidney Alcantara, và tính năng chính của nó là "Chrome extension to load USYD Echo360 videos without Flash".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng USYD Echo360 Loader

Tải xuống các tệp mở rộng USYD Echo360 Loader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên USYD Echo360 Loader USYD Echo360 Loader
ID hekcgkbebmbmbclcgikaocemhaeafpbf
URL Chính Thức https://chromewebstore.google.com/detail/usyd-echo360-loader/hekcgkbebmbmbclcgikaocemhaeafpbf
Mô tả Chrome extension to load USYD Echo360 videos without Flash
Kích Thước Tệp 187 KB
Số Lần Cài Đặt 313
Phiên Bản Hiện Tại 1.3.3
Cập Nhật Lần Cuối 2019-06-25
Ngày Phát Hành 2019-06-23
Đánh Giá 4.88/5 Tổng số 8 Đánh Giá
Nhà Phát Triển Sidney Alcantara
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/notseenee/echo360loader
Ngôn Ngữ Được Hỗ Trợ 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
}