Coursera PL Peer Assess

This extension helps in Peer Assessment for the Cousera Programming Languages course

¿Qué es Coursera PL Peer Assess?

Coursera PL Peer Assess es una extensión de Chrome desarrollada por ajay.pande, y su función principal es "This extension helps in Peer Assessment for the Cousera Programming Languages course".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Coursera PL Peer Assess

Descarga archivos de extensión Coursera PL Peer Assess 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

                        This is an extension for students of the Coursera Programming Languages course (October 2013 edition). 

It enables more convenient Peer Assessment by modifying the Peer Assessment page, and placing the functions written by the student being reviewed alongside the sample solutions for that function. 

Use only if it works for you. Many caveats, including:
- It's a screen scraping app, so highly dependent on the specific HTML structure for the page. All bets are off if Coursera or the PL course changes any of this.
- Only the stundent functions which match sample functions are placed adjacent the samples. The rest of the student file, with some reordering, is placed in a new element at the end of the page.                    

Información Básica de la Extensión

Nombre Coursera PL Peer Assess Coursera PL Peer Assess
ID bdmfikejiobefdheajhffchglpmgaipp
URL Oficial https://chromewebstore.google.com/detail/coursera-pl-peer-assess/bdmfikejiobefdheajhffchglpmgaipp
Descripción This extension helps in Peer Assessment for the Cousera Programming Languages course
Tamaño del Archivo 4.62 KB
Cantidad de Instalaciones 53
Versión Actual 2.0
Última Actualización 2013-11-16
Fecha de Publicación 2013-11-16
Calificación 1.00/5 Total de 1 Calificaciones
Desarrollador ajay.pande
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Coursera PL Peer Assess",
    "description": "This extension helps in Peer Assessment for the Cousera Programming Languages course",
    "version": "2.0",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.coursera.org\/proglang-002\/human_grading\/view\/courses\/970860\/assessments\/*\/*GradingSets\/*\/*Gradings\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "permissions": [
        "*:\/\/*.amazonaws.com\/coursera-uploads\/*"
    ]
}