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 |
| 官方網址 | 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"
]
}
]
} | |