My School Management - Overall Summary

Adds a student and class summary table to the 'Graded Exercise' page on 'myschoolmanagement.com'

什麼是My School Management - Overall Summary?

My School Management - Overall Summary是由Brad Parks開發的Chrome擴展程式,該擴展的主要功能是“Adds a student and class summary table to the 'Graded Exercise' page on 'myschoolmanagement.com'”。

擴展截圖

screenshot

下載My School Management - Overall Summary擴展crx文件

下載My School Management - Overall Summary擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        The table shows a student's overall marks to date, and the class average mark overall to date as well.

Additionally it shows the same results for 1 month ago, 2 months ago, 3 months ago and 4 months ago, to allow you to see how your student and class is doing relative to where they were in the past.

NOTE: I'm not affiliated with myschoolmanagement.com in any way. This is just a feature I wanted to have for my kids, and thought others might like it too!

Changelog: 

0.0.0.3 - Fixed grade calc bug
0.0.0.2 - Fixed weight bug
0.0.0.1 - Initial release                    

擴展基本資訊

名稱 My School Management - Overall Summary My School Management - Overall Summary
ID ihjdkpckncljjhcjcbamnpggbajkmook
官方網址 https://chromewebstore.google.com/detail/my-school-management-over/ihjdkpckncljjhcjcbamnpggbajkmook
簡介 Adds a student and class summary table to the 'Graded Exercise' page on 'myschoolmanagement.com'
檔案大小 781 KB
安裝次數 45
目前版本 0.0.0.3
更新時間 2020-09-24
上架時間 2017-03-14
開發者 Brad Parks
電子郵箱 [email protected]
付費類型 free
擴展官網 http://myschoolmanagement.com/
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "My School Management - Overall  Summary",
    "version": "0.0.0.3",
    "description": "Adds a student and class summary table to the 'Graded Exercise' page on 'myschoolmanagement.com' ",
    "icons": {
        "128": "icon128.png",
        "16": "icon16.png",
        "48": "icon48.png"
    },
    "manifest_version": 2,
    "permissions": [],
    "browser_action": {
        "name": "Manipulate DOM",
        "icons": [
            "icon48.png"
        ],
        "default_icon": "icon48.png"
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "contentscript.js"
            ],
            "matches": [
                "http:\/\/*.myschoolmanagement.com\/*",
                "https:\/\/*.myschoolmanagement.com\/*"
            ]
        }
    ]
}