WeBWorK Helper
Adds several features to WeBWorK
WeBWorK Helper क्या है?
WeBWorK Helper jeremyspiro द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds several features to WeBWorK"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में WeBWorK Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } |