WeBWorK+

Add math inputs to WebWork

Τι είναι το WeBWorK+;

Το WeBWorK+ είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον cvic, και η κύρια λειτουργία του είναι "Add math inputs to WebWork".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης WeBWorK+

Λήψη αρχείων επέκτασης WeBWorK+ σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        WeBWorK+ is a third party chrome extension aiming to provide intuitive input for math equations. Though primarily made for WeBWorK, it can function on other websites provided that the CSS does not clash.

WeBWorK+ is enabled automatically on WeBWorK. To enable it on another site, click the browser action button in the toolbar. Other sites can also be whitelisted via the settings page to enable WeBWorK+ by default.

To open the input UI, focus an input and click the WW+ button. UI options include a modal overlay, as well as an input bar fixed to the bottom of the screen.

Equations are rendered using the MathQuill library which can be found here: http://mathquill.com/

WeBWorK+ currently supports numeric and trigonometric WeBWorK functions.
Notable exceptions include:

**, use ^ instead.
[] and {}, use ().
Scientific notation, eg. 2E9 is not supported. 2*10^9 can be used instead.
exp(x), use e^x
logten(x), bases can be typed manually.
trig^-1(x), for inverse trig, use the prefix 'a' or 'arc' instead of ^-1.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα WeBWorK+ WeBWorK+
ID hfafleldbohglhpifobpbdmokjfcicib
Επίσημο URL https://chromewebstore.google.com/detail/webwork+/hfafleldbohglhpifobpbdmokjfcicib
Περιγραφή Add math inputs to WebWork
Μέγεθος Αρχείου 469 KB
Αριθμός Εγκαταστάσεων 22
Τρέχουσα Έκδοση 0.0.1.0
Τελευταία Ενημέρωση 2019-01-07
Ημερομηνία Δημοσίευσης 2019-01-05
Προγραμματιστής cvic
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WeBWorK+",
    "description": "Add math inputs to WebWork",
    "version": "0.0.1.0",
    "permissions": [
        "storage",
        "activeTab",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "ui\/modal.html",
        "ui\/bar.html",
        "ui\/js\/popper.min.js",
        "ui\/js\/bootstrap.min.js",
        "ui\/js\/jquery-1.9.1.min.js",
        "ui\/js\/mathquill.min.js",
        "ui\/js\/quick-math.js",
        "ui\/js\/toolbar.js",
        "ui\/js\/main.js"
    ],
    "options_page": "options\/index.html",
    "browser_action": {
        "default_title": "WeBWorK+"
    },
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "manifest_version": 2
}