WeBWorK Helper
Adds several features to WeBWorK
Qu'est-ce que WeBWorK Helper ?
WeBWorK Helper est une extension Chrome développée par jeremyspiro, et sa fonction principale est "Adds several features to WeBWorK".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension WeBWorK Helper
Téléchargez les fichiers d'extension WeBWorK Helper au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
============================= 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
Informations de Base sur l'Extension
Nom | WeBWorK Helper |
ID | cpopnpmengdaogmfllafolpghameihnp |
URL Officiel | https://chromewebstore.google.com/detail/webwork-helper/cpopnpmengdaogmfllafolpghameihnp |
Description | Adds several features to WeBWorK |
Taille du Fichier | 53.34 KB |
Nombre d'Installations | 739 |
Version Actuelle | 1.6.7.1 |
Dernière Mise à Jour | 2017-09-12 |
Date de Publication | 2017-09-12 |
Évaluation | 5.00/5 Total 8 Évaluations |
Développeur | jeremyspiro |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |