Canvas files Downloader

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

Cos'è Canvas files Downloader?

Canvas files Downloader è un'estensione di Chrome sviluppata da Abdulrahman A, e la sua funzione principale è "Download all available course attachments on Canvas. This extension works for all schools that use Canvas LMS.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Canvas files Downloader

Scarica i file di estensione Canvas files Downloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Canvas files Downloader Canvas files Downloader
ID meonopfejondoahgndhocmaenpcebkhb
URL Ufficiale https://chromewebstore.google.com/detail/canvas-files-downloader/meonopfejondoahgndhocmaenpcebkhb
Descrizione Download all available course attachments on Canvas. This extension works for all schools that use Canvas LMS.
Dimensione del File 25.5 KB
Conteggio Installazioni 4,442
Versione Corrente 1.2.0
Ultimo Aggiornamento 2020-01-10
Data di Pubblicazione 2020-01-09
Valutazione 3.69/5 Totale 13 Valutazioni
Sviluppatore Abdulrahman A
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/abdul125
URL della Pagina di Aiuto https://forms.gle/1Wq1kwHaWYeDyvry9
Lingue Supportate 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
}