Canvas Toolkit
Improvements for Canvas that give you more information and easier access to grades and assignments.
Canvas Toolkit란 무엇입니까?
Canvas Toolkit은(는) Matt Aaron에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Improvements for Canvas that give you more information and easier access to grades and assignments."입니다.
확장 프로그램 스크린샷
Canvas Toolkit 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Get quick access to grades and upcoming assignments on your dashboard, view additional information on assignment and quiz pages, view the overall class average for a course, and see if you'll be able to update or delete your discussion posts before you post them.
확장 프로그램 기본 정보
이름 | Canvas Toolkit |
ID | nndblifdaiopimbaoneanemfokapfcia |
공식 URL | https://chromewebstore.google.com/detail/canvas-toolkit/nndblifdaiopimbaoneanemfokapfcia |
설명 | Improvements for Canvas that give you more information and easier access to grades and assignments. |
파일 크기 | 21.06 KB |
설치 횟수 | 435 |
현재 버전 | 0.0.3 |
최근 업데이트 | 2021-11-09 |
출시 날짜 | 2021-11-03 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | Matt Aaron |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Canvas Toolkit", "description": "Improvements for Canvas that give you more information and easier access to grades and assignments.", "version": "0.0.3", "manifest_version": 3, "icons": { "16": "icons\/icon_16.png", "24": "icons\/icon_24.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.instructure.com\/" ], "css": [ "css\/dashboard\/course_card_details.css" ], "js": [ "js\/dashboard\/course_card_details.js" ], "run_at": "document_idle" }, { "matches": [ "https:\/\/*.instructure.com\/courses\/*\/grades*" ], "js": [ "js\/grades\/class_average.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/*.instructure.com\/courses\/*\/assignments\/*" ], "js": [ "js\/assignments\/additional_details.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/*.instructure.com\/courses\/*\/quizzes\/*" ], "js": [ "js\/quizzes\/additional_details.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/*.instructure.com\/*\/discussion_topics\/*" ], "js": [ "js\/discussion_topics\/post_permissions_injector.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ { "resources": [ "js\/discussion_topics\/post_permissions_viewer.js" ], "matches": [ "https:\/\/*.instructure.com\/*" ] } ] } |