Canvas Files
Download all your files from Canvas
Canvas Files란 무엇입니까?
Canvas Files은(는) brodenwanner에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download all your files from Canvas"입니다.
확장 프로그램 스크린샷
Canvas Files 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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": [] } |