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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Abdulrahman A, και η κύρια λειτουργία του είναι "Download all available course attachments on Canvas. This extension works for all schools that use Canvas LMS.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Canvas files Downloader

Λήψη αρχείων επέκτασης 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 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
}