Schoology Gradeology
Gradeology enhances the Schoology interface and features a Grade Editor and Calculator and tools for Time Management.
Schoology Gradeology란 무엇입니까?
Schoology Gradeology은(는) Rohan Gupta에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Gradeology enhances the Schoology interface and features a Grade Editor and Calculator and tools for Time Management."입니다.
확장 프로그램 스크린샷
Schoology Gradeology 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
The Grade Book Editor and Calculator allows you to edit your grades and add or delete new assignments to see how your grade would change. Numerous Schoology Interface Improvements: - viewing all grades on the grade report screen - hiding overdue assignments - finals calculator The Time Management currently only works for the FUHSD Schoology domain and uses your input to estimate the amount of time you will have to spend on homework for each day and in the future so that you can better manage your time. In collaboration with Samhith Kakarla: [email protected]
확장 프로그램 기본 정보
이름 | Schoology Gradeology |
ID | gfbcpeahnejhbgneidlmbmeagpbkaaca |
공식 URL | https://chromewebstore.google.com/detail/schoology-gradeology/gfbcpeahnejhbgneidlmbmeagpbkaaca |
설명 | Gradeology enhances the Schoology interface and features a Grade Editor and Calculator and tools for Time Management. |
파일 크기 | 584 KB |
설치 횟수 | 300 |
현재 버전 | 1.3.5 |
최근 업데이트 | 2022-09-01 |
출시 날짜 | 2020-05-27 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Rohan Gupta |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/guptarohan2003/Gradeology |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Schoology Gradeology", "short_name": "Gradeology", "version": "1.3.5", "description": "Gradeology enhances the Schoology interface and features a Grade Editor and Calculator and tools for Time Management.", "permissions": [ "declarativeContent", "storage" ], "background": { "scripts": [ "Script\/background.js" ], "persistant": false }, "page_action": { "default_popup": "popup.html" }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/fuhsd.schoology.com\/*" ], "exclude_matches": [ "https:\/\/fuhsd.schoology.com\/courses", "https:\/\/fuhsd.schoology.com\/grades\/grades", "https:\/\/fuhsd.schoology.com\/course\/*", "https:\/\/fuhsd.schoology.com\/assignment\/*", "https:\/\/fuhsd.schoology.com\/user\/*", "https:\/\/fuhsd.schoology.com\/school\/*", "https:\/\/fuhsd.schoology.com\/event\/*", "https:\/\/fuhsd.schoology.com\/content\/*" ], "js": [ "script\/jquery-3.3.1.min.js", "bootstrap\/js\/bootstrap.min.js", "script\/assignmentRead.js" ], "css": [ "bootstrap\/css\/bootstrap.min.css" ] }, { "matches": [ "https:\/\/fuhsd.schoology.com\/courses" ], "js": [ "script\/jquery-3.3.1.min.js", "bootstrap\/js\/bootstrap.min.js", "script\/courseRead.js" ], "css": [ "bootstrap\/css\/bootstrap.min.css" ] }, { "matches": [ "https:\/\/*.schoology.com\/grades\/grades" ], "js": [ "script\/jquery-3.3.1.min.js", "bootstrap\/js\/bootstrap.min.js", "script\/gradeCalculatorFunctions.js", "script\/gradeCalc.js" ], "css": [ "bootstrap\/css\/bootstrap.min.css" ] }, { "matches": [ "https:\/\/*.schoology.com\/course\/*\/student_grades" ], "js": [ "script\/jquery-3.3.1.min.js", "bootstrap\/js\/bootstrap.min.js", "script\/gradeCalculatorFunctions.js", "script\/singleGradeCalc.js" ], "css": [ "bootstrap\/css\/bootstrap.min.css" ] } ], "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'" } |