My School Management - Overall Summary

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

Qu'est-ce que My School Management - Overall Summary ?

My School Management - Overall Summary est une extension Chrome développée par Brad Parks, et sa fonction principale est "Adds a student and class summary table to the 'Graded Exercise' page on 'myschoolmanagement.com'".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension My School Management - Overall Summary

Téléchargez les fichiers d'extension My School Management - Overall Summary au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom My School Management - Overall Summary My School Management - Overall Summary
ID ihjdkpckncljjhcjcbamnpggbajkmook
URL Officiel https://chromewebstore.google.com/detail/my-school-management-over/ihjdkpckncljjhcjcbamnpggbajkmook
Description Adds a student and class summary table to the 'Graded Exercise' page on 'myschoolmanagement.com'
Taille du Fichier 781 KB
Nombre d'Installations 45
Version Actuelle 0.0.0.3
Dernière Mise à Jour 2020-09-24
Date de Publication 2017-03-14
Développeur Brad Parks
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://myschoolmanagement.com/
Langues Prises en Charge 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\/*"
            ]
        }
    ]
}