Blackboard Grade Calculator
Helps tallying grades on blackboard
Blackboard Grade Calculator란 무엇입니까?
Blackboard Grade Calculator은(는) bcigdemoglu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Helps tallying grades on blackboard"입니다.
확장 프로그램 스크린샷
Blackboard Grade Calculator 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
SUMMARY: Tallies grades in "Comments & Markups" section that has the format: "x/y [ grader explanation text here or empty ]" (e.g: "1/10 -9 No work shown", where x=1 and y=10 for this specific grading.) Displays the tallied grades by modifying the "Comments & Markups" header as "Comments & Markups [sum(x)/sum(y)]" --- BE CAREFUL! Best practice is to define the score ratio at beginning of a comment. For annotations that do not contain a grading, but a ratio as an explanation to a question must be observed carefully, since they would be calculated as well. --- USAGE: Simply download and install the extension to automatically view the sum ratio in the header. Click on "Comments & Markups [sum(x)/sum(y)]" header or the "A+" icon on top-right of the chrome screen (as shown in the first screenshot) to view grader distribution (as shown in the second screenshot.) CREDITS: Thanks to Qiuyin Ren and Syed Hossain for the idea.
확장 프로그램 기본 정보
이름 | Blackboard Grade Calculator |
ID | idhajmemlipfeknjppgacbkkbagpgkmm |
공식 URL | https://chromewebstore.google.com/detail/blackboard-grade-calculat/idhajmemlipfeknjppgacbkkbagpgkmm |
설명 | Helps tallying grades on blackboard |
파일 크기 | 1.02 MB |
설치 횟수 | 72 |
현재 버전 | 1.4 |
최근 업데이트 | 2017-02-17 |
출시 날짜 | 2017-02-16 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | bcigdemoglu |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "name": "Blackboard Grade Calculator", "description": "Helps tallying grades on blackboard", "version": "1.4", "manifest_version": 2, "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/crocodoc.com\/view\/*" ], "all_frames": true } ], "background": { "scripts": [ "bg.js" ] }, "browser_action": { "default_icon": "icon128.png" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |