PowerStudent

Adds helpful tools and information to WHPS PowerSchool page for students

¿Qué es PowerStudent?

PowerStudent es una extensión de Chrome desarrollada por Eric Zeiberg, y su función principal es "Adds helpful tools and information to WHPS PowerSchool page for students".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión PowerStudent

Descarga archivos de extensión PowerStudent en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Designed for use by West Hartford Public School students

This extension adds a lot of new functionality to your PowerSchool page! 

FEATURES:
- Add "fake" assignments to a class to see how they will affect your average ("If I get an 85 on my test, what grade will I have now?")
- Remove assignments from a class to see how they would affect your average ("Rats! If I hadn't gotten a D on that essay, my grade would be a...")
- See your GPA per quarter / semester live, as grades change. 

This extension works with both total point grading systems and weighted grading systems. 

MORE TO COME SOON!

PS: This extension is still in beta, there will probably be bugs here and there. Please report back to Eric if you find a bug.                    

Información Básica de la Extensión

Nombre PowerStudent PowerStudent
ID jlapkdomihdknaijbhjgcmhcnjebemmn
URL Oficial https://chromewebstore.google.com/detail/powerstudent/jlapkdomihdknaijbhjgcmhcnjebemmn
Descripción Adds helpful tools and information to WHPS PowerSchool page for students
Tamaño del Archivo 270 KB
Cantidad de Instalaciones 59
Versión Actual 1.1
Última Actualización 2016-10-17
Fecha de Publicación 2016-10-16
Desarrollador Eric Zeiberg
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión http://ericzeiberg.com
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PowerStudent",
    "description": "Adds helpful tools and information to WHPS PowerSchool page for students",
    "version": "1.1",
    "background": {
        "scripts": [
            "jquery.min.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/powerschool.whps.org\/guardian\/scores.html?*"
            ],
            "js": [
                "jquery.min.js",
                "gradesPage.js"
            ]
        },
        {
            "matches": [
                "https:\/\/powerschool.whps.org\/guardian\/home.html"
            ],
            "js": [
                "jquery.min.js",
                "mainPage.js"
            ]
        }
    ],
    "icons": {
        "16": "icon-ps.png",
        "48": "icon-ps.png",
        "128": "icon-ps.png"
    },
    "permissions": [
        "http:\/\/powerschool.whps.org\/",
        "https:\/\/powerschool.whps.org\/",
        "https:\/\/powerschool.whps.org\/public\/",
        "tabs",
        "storage",
        "cookies",
        "notifications"
    ]
}