Coursera PL Peer Assess

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

Coursera PL Peer Assess क्या है?

Coursera PL Peer Assess ajay.pande द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension helps in Peer Assessment for the Cousera Programming Languages course"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Coursera PL Peer Assess एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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\/*"
    ]
}