Coursera PL Peer Assess
This extension helps in Peer Assessment for the Cousera Programming Languages course
Coursera PL Peer Assess là gì?
Coursera PL Peer Assess là một tiện ích mở rộng Chrome được phát triển bởi ajay.pande, và tính năng chính của nó là "This extension helps in Peer Assessment for the Cousera Programming Languages course".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Coursera PL Peer Assess
Tải xuống các tệp mở rộng Coursera PL Peer Assess dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Coursera PL Peer Assess |
ID | bdmfikejiobefdheajhffchglpmgaipp |
URL Chính Thức | https://chromewebstore.google.com/detail/coursera-pl-peer-assess/bdmfikejiobefdheajhffchglpmgaipp |
Mô tả | This extension helps in Peer Assessment for the Cousera Programming Languages course |
Kích Thước Tệp | 4.62 KB |
Số Lần Cài Đặt | 53 |
Phiên Bản Hiện Tại | 2.0 |
Cập Nhật Lần Cuối | 2013-11-16 |
Ngày Phát Hành | 2013-11-16 |
Đánh Giá | 1.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | ajay.pande |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |