WeBWorKer

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

WeBWorKer란 무엇입니까?

WeBWorKer은(는) Daniel Benjamin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Preview nicely formatted math equations as you type them into WeBWorK answer boxes and check for complete parentheses."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

WeBWorKer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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\/*"
            ]
        }
    ]
}