Quick Equations

A fast, shortcut based equation editor with realtime preview and WolframAlpha, WeBWorK and Google Forms support.

Quick Equations란 무엇입니까?

Quick Equations은(는) https://akr.am에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A fast, shortcut based equation editor with realtime preview and WolframAlpha, WeBWorK and Google Forms support."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This is a fast equation editor/viewer that allows you to type equations quickly using helpful shortcuts and see them as you do. No more do you have to worry about missing a bracket or mistyping your equation with the real-time preview. You can then search for the equation on WolframAlpha to solve it or see more information. You can also copy or save the equation as an image by right-clicking it, or by dragging in sites such as Google Docs.

You can use the extension directly on the WolframAlpha website by clicking the Quick Equations icon on the page.

To access extension options, right-click the extension button and select "Options".

You can use Quick Equations on any WeBWorK site by enabling that feature in the extension options.

The extension also supports Google Forms and that can be enabled in the options. To add an equation as part of a question, click the image button in Google Forms and then drag the equation from the extension popup to the drop area. You can also preview equations while answering questions or viewing responses by clicking the Quick Equations icon next to them.                    

확장 프로그램 기본 정보

이름 Quick Equations Quick Equations
ID pnhnfjbdadnnicpliempeidfminbflon
공식 URL https://chromewebstore.google.com/detail/quick-equations/pnhnfjbdadnnicpliempeidfminbflon
설명 A fast, shortcut based equation editor with realtime preview and WolframAlpha, WeBWorK and Google Forms support.
파일 크기 75.2 KB
설치 횟수 20,000
현재 버전 1.6.2
최근 업데이트 2022-06-25
출시 날짜 2019-02-10
평점 4.06/5 총 34 개의 평점
개발자 https://akr.am
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://akr.am/equation
도움말 페이지 URL https://github.com/mohd-akram/equation/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Quick Equations",
    "short_name": "Quick Eqs",
    "version": "1.6.2",
    "manifest_version": 2,
    "description": "A fast, shortcut based equation editor with realtime preview and WolframAlpha, WeBWorK and Google Forms support.",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "vendor\/jquery-3.6.0.min.js",
                "vendor\/jqmath-etc-0.4.6.min.js",
                "equation.js",
                "wolfram.js"
            ],
            "css": [
                "vendor\/jqmath-0.4.3.css",
                "wolfram.css"
            ],
            "matches": [
                "http:\/\/www.wolframalpha.com\/input*",
                "https:\/\/www.wolframalpha.com\/input*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "optional_permissions": [
        "tabs",
        "webNavigation",
        "http:\/\/docs.google.com\/*",
        "https:\/\/docs.google.com\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "icon.png"
    ]
}