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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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\/*"
    ]
}