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文件
下载Schoology Gradeology扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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'" } |