Canvas files Downloader

Download all available course attachments on Canvas. This extension works for all schools that use Canvas LMS.

Was ist Canvas files Downloader?

Canvas files Downloader ist eine Chrome-Erweiterung, die von Abdulrahman A entwickelt wurde, und ihr Hauptmerkmal ist "Download all available course attachments on Canvas. This extension works for all schools that use Canvas LMS.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Canvas files Downloader-Erweiterungs-CRX-Datei herunterladen

Laden Sie Canvas files Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        🤦🏻‍♂️ 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                    

Grundlegende Informationen zur Erweiterung

Name Canvas files Downloader Canvas files Downloader
ID meonopfejondoahgndhocmaenpcebkhb
Offizielle URL https://chromewebstore.google.com/detail/canvas-files-downloader/meonopfejondoahgndhocmaenpcebkhb
Beschreibung Download all available course attachments on Canvas. This extension works for all schools that use Canvas LMS.
Dateigröße 25.5 KB
Installationsanzahl 4,442
Aktuelle Version 1.2.0
Letztes Update 2020-01-10
Veröffentlichungsdatum 2020-01-09
Bewertung 3.69/5 Insgesamt 13 Bewertungen
Entwickler Abdulrahman A
Zahlungsart free
Erweiterungswebsite https://github.com/abdul125
Hilfeseite URL https://forms.gle/1Wq1kwHaWYeDyvry9
Unterstützte Sprachen 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
}