Math

Solve math equations in the address bar by typing 'math' then something like: (sqrt(5)-1)/cos(rad(72))

Mathคืออะไร?

Math เป็นส่วนขยายของ Chrome ที่พัฒนาโดย em_te และคุณลักษณะหลักของมันคือ "Solve math equations in the address bar by typing 'math' then something like: (sqrt(5)-1)/cos(rad(72))"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Math

ดาวน์โหลดไฟล์ส่วนขยาย Math ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        First type "math", then an empty space, then the equation. The answer will appear in the drop down menu.

You can type trigonometry too like:

math 10 + cos(rad(45)) + log(10) + PI*180 / (2^4 + atan(1))

If you press the "enter" key the result will be saved and is accessible by clicking on the toolbar icon. Only the last 30 calculations will be saved and they will be cleared when the browser is closed.

Note that (^) is a "the power of" operator, and not a bitwise-or operator.
And that (~) is the "negative" operator, so negative 2 is "~2" and not "-2".

Supported constants are:
Euler's constant (E), Natural log of 2 (LN2), Natural log of 10 (LN10), Base 2 log of E (LOG2E), Base 10 log of E (LOG10E), Pi (PI), Square root of 0.5 (SQRT1_2), Square root of 2 (SQRT2)

Supported (one argument) functions are:
abs(x), acos(x), acosh(x), asin(x), asinh(x), atan(x), atanh(x), cube root (cbrt(x)), cos(x), cosh(x), radians to degrees (deg(x)), E to the power of x (exp(x)), log(x), log10(x), log2(x), degrees to radians (rad(x)), sin(x), sinh(x), square root (sqrt(x)), tan(x), tanh(x).                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Math Math
ID gfcggehldbgcbbpiamnncgbjllgpjdfa
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/math/gfcggehldbgcbbpiamnncgbjllgpjdfa
คำอธิบาย Solve math equations in the address bar by typing 'math' then something like: (sqrt(5)-1)/cos(rad(72))
ขนาดไฟล์ 10.23 KB
จำนวนการติดตั้ง 437
เวอร์ชันปัจจุบัน 0.1
อัปเดตครั้งล่าสุด 2017-09-05
วันที่เผยแพร่ 2017-09-04
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา em_te
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://em-te.github.io/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Math",
    "author": "Terry Yuen",
    "version": "0.1",
    "description": "Solve math equations in the address bar by typing 'math' then something like: (sqrt(5)-1)\/cos(rad(72))",
    "manifest_version": 2,
    "icons": {
        "16": "icon_16.png",
        "24": "icon_24.png",
        "38": "icon_38.png",
        "48": "icon_48.png",
        "96": "icon_96.png"
    },
    "omnibox": {
        "keyword": "math"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "browser_style": true,
        "default_icon": {
            "19": "icon_16.png",
            "24": "icon_24.png",
            "38": "icon_38.png"
        },
        "default_popup": "popup.html"
    }
}