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開發的Chrome擴展程式,該擴展的主要功能是“This extension helps in Peer Assessment for the Cousera Programming Languages course”。

擴展截圖

screenshot

下載Coursera PL Peer Assess擴展crx文件

下載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
官方網址 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\/*"
    ]
}