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.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

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 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
Eメール [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'"
}