Canvas files Downloader
Download all available course attachments on Canvas. This extension works for all schools that use Canvas LMS.
Qu'est-ce que Canvas files Downloader ?
Canvas files Downloader est une extension Chrome développée par Abdulrahman A, et sa fonction principale est "Download all available course attachments on Canvas. This extension works for all schools that use Canvas LMS.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Canvas files Downloader
Téléchargez les fichiers d'extension Canvas files Downloader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
🤦🏻♂️ 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
Informations de Base sur l'Extension
Nom | Canvas files Downloader |
ID | meonopfejondoahgndhocmaenpcebkhb |
URL Officiel | https://chromewebstore.google.com/detail/canvas-files-downloader/meonopfejondoahgndhocmaenpcebkhb |
Description | Download all available course attachments on Canvas. This extension works for all schools that use Canvas LMS. |
Taille du Fichier | 25.5 KB |
Nombre d'Installations | 4,442 |
Version Actuelle | 1.2.0 |
Dernière Mise à Jour | 2020-01-10 |
Date de Publication | 2020-01-09 |
Évaluation | 3.69/5 Total 13 Évaluations |
Développeur | Abdulrahman A |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/abdul125 |
URL de la Page d'Aide | https://forms.gle/1Wq1kwHaWYeDyvry9 |
Langues Prises en Charge | 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 } |