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」です。
拡張機能のスクリーンショット
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 |
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\/*" ] } |