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開發的Chrome擴展程式,該擴展的主要功能是“Download all available course attachments on Canvas. This extension works for all schools that use Canvas LMS.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Canvas files Downloader擴展crx文件

下載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
官方網址 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
}