EAAA Canvas Downloader

Download multiple course files with one click on Canvas. Only works with EAAA students.

EAAA Canvas Downloader란 무엇입니까?

EAAA Canvas Downloader은(는) Asbjørn Bach에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download multiple course files with one click on Canvas. Only works with EAAA students."입니다.

확장 프로그램 스크린샷

screenshot

EAAA Canvas Downloader 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Lightweight extension to download multiple course files with one click on Canvas. Only works with EAAA students.

Extension only works on https://eaaa.instructure.com/courses/* pages


Release notes: 

V1.3
- Updated popup window with how-to-use since a lot of people got confused
- Implemented counter to track the amount of clicks you saved
- Download icon got a hover title and hover mouse effect
- Added "Download all files" button

v1.2
- Added select option
- Downloading files no longer pushes page to top

v1.1
- Moved download icon
- Updated info page

v1.0
- Initial release


Credits:
- Download icon made by Freepik from www.flaticon.com is licensed by CC 3.0 BY                    

확장 프로그램 기본 정보

이름 EAAA Canvas Downloader EAAA Canvas Downloader
ID ejfjicoilpmhfbdlagcfabidoagclpbg
공식 URL https://chromewebstore.google.com/detail/eaaa-canvas-downloader/ejfjicoilpmhfbdlagcfabidoagclpbg
설명 Download multiple course files with one click on Canvas. Only works with EAAA students.
파일 크기 69.72 KB
설치 횟수 163
현재 버전 1.3
최근 업데이트 2018-10-15
출시 날짜 2018-10-15
평점 4.75/5 총 4 개의 평점
개발자 Asbjørn Bach
결제 유형 free
지원되는 언어 da
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "EAAA Canvas Downloader",
    "version": "1.3",
    "manifest_version": 2,
    "description": "Download multiple course files with one click on Canvas. Only works with EAAA students.",
    "permissions": [
        "storage",
        "activeTab"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon48.png",
        "default_title": "Canvas Downloader",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "cloud-computing.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/eaaa.instructure.com\/courses\/*"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "script.js"
            ]
        }
    ]
}