Canvas files Downloader
Download all available course attachments on Canvas. This extension works for all schools that use Canvas LMS.
什么是Canvas files Downloader?
Canvas files Downloader是由Abdulrahman A开发的Chrome扩展程序,该扩展的主要功能是“Download all available course attachments on Canvas. This extension works for all schools that use Canvas LMS.”。
扩展截图
下载Canvas files Downloader扩展crx文件
下载Canvas files Downloader扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
🤦🏻♂️ The purpose of creating Canvas Files Downloader extension is to facilitate the process of downloading files especially in the modules tab/path; because currently in order for students to download a file , they have to make multiple of clicks to do so. 🎯 The alternative solution is to allow students to either download all attachments by selecting all or download only the selected ones in modules, pages, assignments, and wiki tab or path. If there is an attachment in any of these paths, users will get the download button. 💡 To better use Canvas files Downloader to full extent: Turn off/ disable the "Ask where to save each file before downloading" option on chrome://settings/downloads so that you download the files immediately without getting the popup dialog 💡💡💡 This extension works for all schools that use Canvas Learning Management System (LMS) / Instructure
扩展基本信息
名称 | Canvas files Downloader |
ID | meonopfejondoahgndhocmaenpcebkhb |
官方URL | https://chromewebstore.google.com/detail/canvas-files-downloader/meonopfejondoahgndhocmaenpcebkhb |
简介 | Download all available course attachments on Canvas. This extension works for all schools that use Canvas LMS. |
文件大小 | 25.5 KB |
安装次数 | 4,442 |
当前版本 | 1.2.0 |
更新时间 | 2020-01-10 |
上架时间 | 2020-01-09 |
评分 | 3.69/5 共13次评分 |
开发者 | Abdulrahman A |
付费类型 | free |
扩展官网 | https://github.com/abdul125 |
帮助页面URL | https://forms.gle/1Wq1kwHaWYeDyvry9 |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Canvas files Downloader", "version": "1.2.0", "description": "Download all available course attachments on Canvas. This extension works for all schools that use Canvas LMS.", "icons": { "64": "img\/NewLogo.png" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "downloads" ], "content_scripts": [ { "matches": [ "*:\/\/*.instructure.com\/courses\/*", "*:\/\/*\/courses\/*" ], "exclude_matches": [ "*:\/\/*\/courses\/*\/quizzes\/*", "*:\/\/*.instructure.com\/courses\/*\/quizzes\/*" ], "js": [ "content.js" ], "css": [ "css\/style.css" ] } ], "manifest_version": 2 } |