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 |
| Eメール | [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"
]
}
]
} | |