Lecture Downloader
Downloads UofT MyMedia Videos
什么是Lecture Downloader?
Lecture Downloader是由adempster.dev开发的Chrome扩展程序,该扩展的主要功能是“Downloads UofT MyMedia Videos”。
扩展截图
下载Lecture Downloader扩展crx文件
下载Lecture Downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Allows University of Toronto students to download their online lectures to view offline and on their preferred viewer.
BBColaborate download buttons appear even when professors turn off downloading. 扩展基本信息
| 名称 | |
| ID | ndnkcmibkplamecekdhikoadjamfcpfk |
| 官方URL | https://chrome.google.com/webstore/detail/lecture-downloader/ndnkcmibkplamecekdhikoadjamfcpfk |
| 简介 | Downloads UofT MyMedia Videos |
| 文件大小 | 1.71 MB |
| 安装次数 | 1,219 |
| 当前版本 | 2.0.4 |
| 更新时间 | 2021-11-16 |
| 上架时间 | 2020-10-17 |
| 评分 | 4.69/5 共13次评分 |
| 开发者 | adempster.dev |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | http://lectures.engscitools.ca |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Lecture Downloader",
"version": "2.0.4",
"content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
"description": "Downloads UofT MyMedia Videos",
"icons": {
"16": "icons\/16x16.png",
"32": "icons\/32x32.png",
"48": "icons\/48x48.png",
"128": "icons\/128x128.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_title": "Lecture Downloader",
"default_popup": "popup.html"
},
"permissions": [
"downloads"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.utoronto.ca\/*"
],
"run_at": "document_idle",
"js": [
"contentScript.js"
]
},
{
"matches": [
"*:\/\/*.bbcollab.com\/*"
],
"js": [
"contentScriptBB.js"
]
}
]
} | |