Canvas Files

Download all your files from Canvas

Canvas Filesคืออะไร?

Canvas Files เป็นส่วนขยายของ Chrome ที่พัฒนาโดย brodenwanner และคุณลักษณะหลักของมันคือ "Download all your files from Canvas"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Canvas Files

ดาวน์โหลดไฟล์ส่วนขยาย Canvas Files ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension adds a simple sidebar on the Canvas dashboard page that allows you to search for all the files in all your courses on Canvas and download them with one click. Canvas does not currently have any mechanism to do this, so this extension makes it easier to get all of your course files at once instead of downloading them individually. 

You can specify which courses to include and whichever file types you want excluded. Before you download, it shows all the files that you will download, their size, and from which courses they will come. It's very useful for downloading all lecture slides/videos before a final or for saving course content for the future. And when you're done with it, you can easily hide it whenever you want!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Canvas Files Canvas Files
ID ljfppingbanpkhnefdakgeglhjfdadad
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/canvas-files/ljfppingbanpkhnefdakgeglhjfdadad
คำอธิบาย Download all your files from Canvas
ขนาดไฟล์ 359 KB
จำนวนการติดตั้ง 413
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2020-09-07
วันที่เผยแพร่ 2020-05-30
คะแนน 3.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา brodenwanner
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/broden-wanner/canvasfiles
URL หน้าช่วยเหลือ https://github.com/broden-wanner/canvasfiles/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "Canvas Files",
    "name": "Canvas Files",
    "description": "Download all your files from Canvas",
    "version": "1.0.1",
    "manifest_version": 2,
    "icons": {
        "16": "favicon-16x16.png",
        "32": "favicon-32x32.png",
        "48": "icon48.png",
        "128": "icon128.png",
        "192": "android-chrome-192x192.png",
        "512": "android-chrome-512x512.png"
    },
    "permissions": [
        "declarativeContent",
        "activeTab",
        "storage",
        "downloads"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/canvas.umn.edu\/"
            ],
            "js": [
                "content.js",
                "static\/js\/2.efa7677e.chunk.js",
                "static\/js\/main.41159a94.chunk.js",
                "static\/js\/runtime-main.bb9a1bd9.js"
            ],
            "css": [
                "static\/css\/main.b43d50eb.chunk.css"
            ]
        }
    ],
    "browser_action": []
}