WeBWorK Helper
Adds several features to WeBWorK
WeBWorK Helper란 무엇입니까?
WeBWorK Helper은(는) jeremyspiro에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds several features to WeBWorK"입니다.
확장 프로그램 스크린샷
WeBWorK Helper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
============================= NOW WORKS FOR MOST* WEBWORK INSTALLATIONS! ============================= This extension makes using the WeBWorK software easier and more convenient. Features include: • Generates formatted previews of what your answers look like as you type them. No more spamming that Preview button! • Highlights parentheses inside of input boxes so that you don't lose track of them. • Input boxes expand to accommodate your answer so that nothing gets cut off. • Course pages show how much of each assignment you have completed, and show the time remaining to complete each problem set. • Add notes to problems that you can later reference when you revisit assignments to study. ...and more! *"most" means installations that use the default "\webwork2" path as the root of the webwork server. Support for other types forthcoming. If this extension doesn't work for your webwork installation, please submit a bug report to help me add fixes *This extension was created by a third party and is not endorsed by WeBWorK
확장 프로그램 기본 정보
이름 | WeBWorK Helper |
ID | cpopnpmengdaogmfllafolpghameihnp |
공식 URL | https://chromewebstore.google.com/detail/webwork-helper/cpopnpmengdaogmfllafolpghameihnp |
설명 | Adds several features to WeBWorK |
파일 크기 | 53.34 KB |
설치 횟수 | 739 |
현재 버전 | 1.6.7.1 |
최근 업데이트 | 2017-09-12 |
출시 날짜 | 2017-09-12 |
평점 | 5.00/5 총 8 개의 평점 |
개발자 | jeremyspiro |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "WeBWorK Helper", "description": "Adds several features to WeBWorK", "version": "1.6.7.1", "icons": { "128": "icon-128.png", "64": "icon-64.png", "32": "icon-32.png", "16": "icon-16.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/*\/webwork2*" ], "js": [ "inject.js" ], "css": [ "styles.css" ] } ], "options_ui": { "page": "options.html", "chrome_style": true }, "browser_action": { "default_title": "WeBWorK", "default_popup": "popup.html" }, "permissions": [ "storage" ], "web_accessible_resources": [ "options.js", "popup.js", "class.js", "assignment.js", "problem.js", "form.css" ] } |