Gradescope Add to Calendar
Adds a add to calendar button to all student assignments on Gradescope.
Gradescope Add to Calendar란 무엇입니까?
Gradescope Add to Calendar은(는) calvinaatian에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a add to calendar button to all student assignments on Gradescope."입니다.
확장 프로그램 스크린샷
Gradescope Add to Calendar 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Gradescope Add to Calendar Button Source available on https://github.com/calvinatian/gradescope-add-to-calendar-button Adds a button to create calendar events next to all Gradescope assignments. Uses https://github.com/add2cal/add-to-calendar-button to generate links. Currently: - Adds calendar button to all courses user is enrolled in as a student on gradescope.com - Button to the right of date column - Default styling on calendar button
확장 프로그램 기본 정보
이름 | Gradescope Add to Calendar |
ID | bdbeeblaipbingbdhkgmkoefpfolpjmg |
공식 URL | https://chromewebstore.google.com/detail/gradescope-add-to-calenda/bdbeeblaipbingbdhkgmkoefpfolpjmg |
설명 | Adds a add to calendar button to all student assignments on Gradescope. |
파일 크기 | 60 KB |
설치 횟수 | 333 |
현재 버전 | 0.0.5 |
최근 업데이트 | 2023-01-27 |
출시 날짜 | 2022-11-30 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | calvinaatian |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/calvinatian/gradescope-add-to-calendar-button |
도움말 페이지 URL | https://github.com/calvinatian/gradescope-add-to-calendar-button/issues |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Gradescope Add to Calendar", "version": "0.0.5", "description": "Adds a add to calendar button to all student assignments on Gradescope.", "icons": { "16": "assets\/icons\/16x16.png", "32": "assets\/icons\/32x32.png", "48": "assets\/icons\/48x48.png", "128": "assets\/icons\/128x128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.gradescope.com\/courses\/*" ], "css": [ "assets\/css\/calendar.css", "assets\/add-to-calendar-button\/atcb.min.css" ], "js": [ "gradescope_calendar_button.js", "assets\/add-to-calendar-button\/atcb.min.js" ] } ], "web_accessible_resources": [ { "matches": [ "*:\/\/*.gradescope.com\/*" ], "resources": [ "assets\/add-to-calendar-button\/atcb.min.js", "assets\/add-to-calendar-button\/atcb.min.css", "assets\/css\/button.css" ] } ] } |