WeBWorK Helper
Adds several features to WeBWorK
什么是WeBWorK Helper?
WeBWorK Helper是由jeremyspiro开发的Chrome扩展程序,该扩展的主要功能是“Adds several features to WeBWorK”。
扩展截图
下载WeBWorK Helper扩展crx文件
下载WeBWorK Helper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
============================= 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" ] } |