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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Download all available course attachments on Canvas. This extension works for all schools that use Canvas LMS."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Canvas files Downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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