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文件

下載Quick Equations擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}