Coursera PL Peer Assess

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

Τι είναι το Coursera PL Peer Assess;

Το Coursera PL Peer Assess είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ajay.pande, και η κύρια λειτουργία του είναι "This extension helps in Peer Assessment for the Cousera Programming Languages course".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Coursera PL Peer Assess

Λήψη αρχείων επέκτασης Coursera PL Peer Assess σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Coursera PL Peer Assess Coursera PL Peer Assess
ID bdmfikejiobefdheajhffchglpmgaipp
Επίσημο URL https://chromewebstore.google.com/detail/coursera-pl-peer-assess/bdmfikejiobefdheajhffchglpmgaipp
Περιγραφή This extension helps in Peer Assessment for the Cousera Programming Languages course
Μέγεθος Αρχείου 4.62 KB
Αριθμός Εγκαταστάσεων 53
Τρέχουσα Έκδοση 2.0
Τελευταία Ενημέρωση 2013-11-16
Ημερομηνία Δημοσίευσης 2013-11-16
Αξιολόγηση 1.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής ajay.pande
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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\/*"
    ]
}