WeBWorKer

Preview nicely formatted math equations as you type them into WeBWorK answer boxes and check for complete parentheses.

WeBWorKer क्या है?

WeBWorKer Daniel Benjamin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Preview nicely formatted math equations as you type them into WeBWorK answer boxes and check for complete parentheses."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में WeBWorKer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Are you tired of struggling under the weight of countless WeBWorK assignments?

WeBWorKer can help by doing the heavy lifting for you!

It will show you a real time formatted preview of the answers as you input them and if/where you missed parentheses. No longer will you have to waste time redoing a question just to realize you missed one tiny bracket. 

WeBWorKer also adds a quick shortcut to open Piazza with the question number automatically being copied to the clipboard for quick pasting and searching. 

Another added feature is using keywords from the question to search the web for online videos and resources to help you understand the relevant topics in more depth.                    

एक्सटेंशन की मूल जानकारी

नाम WeBWorKer WeBWorKer
ID cokogomdladilchdakkknehhnnoipbke
आधिकारिक URL https://chromewebstore.google.com/detail/webworker/cokogomdladilchdakkknehhnnoipbke
विवरण Preview nicely formatted math equations as you type them into WeBWorK answer boxes and check for complete parentheses.
फ़ाइल का आकार 1.61 MB
स्थापना संख्या 266
वर्तमान संस्करण 1.3
अंतिम अपडेट 2024-02-07
प्रकाशन तिथि 2024-01-23
रेटिंग 4.90/5 कुल 10 रेटिंग्स
डेवलपर Daniel Benjamin
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/crimson-dynamo/WeBWorKer
सहायता पृष्ठ URL https://github.com/crimson-dynamo/WeBWorKer
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "WeBWorKer",
    "version": "1.3",
    "description": "Preview nicely formatted math equations as you type them into WeBWorK answer boxes and check for complete parentheses.",
    "author": "Daniel Benjamin",
    "minimum_chrome_version": "96",
    "icons": {
        "16": "icon\/icon_16.png",
        "32": "icon\/icon_32.png",
        "48": "icon\/icon_48.png",
        "128": "icon\/icon_128.png"
    },
    "action": {
        "default_title": "WeBWorKer",
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon\/icon_16.png",
            "32": "icon\/icon_32.png",
            "48": "icon\/icon_48.png",
            "128": "icon\/icon_128.png"
        }
    },
    "background": {
        "service_worker": "worker.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "lib\/katex\/fonts\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "declarativeContent",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/webwork\/*",
                "*:\/\/*\/webwork2\/*"
            ],
            "js": [
                "tampermonkey-script.js"
            ]
        },
        {
            "css": [
                "wwstyle.css"
            ],
            "js": [
                "jquery-1.8.3.min.js",
                "wwscript.js"
            ],
            "matches": [
                "*:\/\/*\/webwork\/*",
                "*:\/\/*\/webwork2\/*"
            ]
        }
    ]
}