Canvas Grade Viewer
This extension lets you view your canvas grade average per class, even when total grades are disabled.
Canvas Grade Viewer란 무엇입니까?
Canvas Grade Viewer은(는) Ethan Vazquez에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension lets you view your canvas grade average per class, even when total grades are disabled."입니다.
확장 프로그램 스크린샷
Canvas Grade Viewer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
*1.9.4 Update* (2/7/2021) - Updated Privacy Policy on Chrome Web Store - Added uninstallation survey (sorry but it's very helpful to keep squashing bugs) Unblock Canvas grades! A simple extension to tally up and accurately display your total grade if it has been disabled. You can also click the "Add to GPA" button to easily organize your grades and calculate your GPA, which is displayed when you click on the extension in top right-hand corner of Chrome. NOTE: this will not show any hidden grades, nor take those into account. Any grades that are not yet graded will be ignored.
확장 프로그램 기본 정보
이름 | Canvas Grade Viewer |
ID | ngmeehoammklkokkbgakeadianldjbaj |
공식 URL | https://chromewebstore.google.com/detail/canvas-grade-viewer/ngmeehoammklkokkbgakeadianldjbaj |
설명 | This extension lets you view your canvas grade average per class, even when total grades are disabled. |
파일 크기 | 15.24 KB |
설치 횟수 | 2,016 |
현재 버전 | 1.9.4 |
최근 업데이트 | 2021-02-13 |
출시 날짜 | 2020-05-24 |
평점 | 4.11/5 총 9 개의 평점 |
개발자 | Ethan Vazquez |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Canvas Grade Viewer", "description": "This extension lets you view your canvas grade average per class, even when total grades are disabled.", "version": "1.9.4", "author": "Ethan Vazquez", "icons": { "48": "icon38.png" }, "browser_action": { "default_title": "Canvas Grade Viewer", "default_icon": { "19": "icon20.png", "20": "icon20.png", "38": "icon38.png" }, "default_popup": "dashboard.html" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "*:\/\/*.instructure.com\/courses\/*\/grades*" ], "js": [ "canvasgradeviewer.client.js" ] } ], "permissions": [ "storage" ], "background": { "scripts": [ "canvasgradeviewer.background.js" ], "persistent": false } } |