StudEaz for Google Classroom
Get rid of all the hassle of manually downloading materials from Google Classroom. Download multiple documents in a few clicks.
StudEaz for Google Classroom란 무엇입니까?
StudEaz for Google Classroom은(는) Microsoft Learn Student Ambassadors SRM에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get rid of all the hassle of manually downloading materials from Google Classroom. Download multiple documents in a few clicks."입니다.
확장 프로그램 스크린샷
StudEaz for Google Classroom 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Tired of opening every document in a new tab and then downloading them one by one? Too time consuming for last minute exam preparation? StudEaz is a browser extension to download multiple documents from a Google Classroom in a few clicks. It extracts links of the study material uploaded in your classroom, allows you to select the documents you want and you have the documents downloaded to your laptop in about 2 clicks!
확장 프로그램 기본 정보
이름 | StudEaz for Google Classroom |
ID | ddmpckcmhpnpgfcgfgeklphbbigknjgf |
공식 URL | https://chromewebstore.google.com/detail/studeaz-for-google-classr/ddmpckcmhpnpgfcgfgeklphbbigknjgf |
설명 | Get rid of all the hassle of manually downloading materials from Google Classroom. Download multiple documents in a few clicks. |
파일 크기 | 107 KB |
설치 횟수 | 829 |
현재 버전 | 1.3 |
최근 업데이트 | 2021-03-04 |
출시 날짜 | 2021-01-25 |
평점 | 3.55/5 총 11 개의 평점 |
개발자 | Microsoft Learn Student Ambassadors SRM |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/MLSA-SRM/GCR-Extension/ |
도움말 페이지 URL | https://msclubsrm.in |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "StudEaz for Google Classroom", "version": "1.3", "description": "Get rid of all the hassle of manually downloading materials from Google Classroom. Download multiple documents in a few clicks.", "permissions": [ "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/classroom.google.com\/*", "http:\/\/classroom.google.com\/*" ], "js": [ "content.js" ] } ], "icons": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "browser_action": { "default_icon": "assets\/icon16.png", "default_popup": "pop.html", "default_title": "StudEaz for Google Classroom" } } |