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
}