AlgCalc

An algebra calculator

AlgCalcคืออะไร?

AlgCalc เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://mrbubbles.dev และคุณลักษณะหลักของมันคือ "An algebra calculator"

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

screenshot

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

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

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

                        A simple algebra calculator with support for a limited number of algebraic equations. Designed for IXL.

Support me!
https://www.buymeacoffee.com/mrbubbles

Features:
Basic algebra calculator that you can access from your browser
IXL Autofill - press 'ctrl' + ' " ' to autofill the answers into IXL
More soon...

Limitations:
IXL Autofill has no support for fractions in the problem (I'm working on a solution for this issue, but it'll take time). However, you can still use the extension itself to solve these problems. if you click on the extension icon you can hand write the problem and get the solution upon pressing enter.

Known working algebraic problems:
linear equations
quadratic equations (only for ixl autofill)
systems of equations (with 2 systems, currently working on adding support for more then this)
*other types of problems are hit or miss, support may or may not be added in the future*

Changelog:
1.4
*this update may or may not have broken multiple things*
added ability to add subtract multiply divide etc polynomials (very buggy (i think i couldn't fully test it))
added actual solve button on ixl. still requires you to manually select the problem.

1.3
added ability to solve quadratics with ixl solver (not yet working on extension popup)

1.2
added ixl solver! highlight the problem, right click it, and then hit solve - or highlight the problem then hold the control key (ctrl) and press the quotes button (") on your keyboard to autofill the answer! (currently only works for specific types of problems.)

added ability to solve systems of equations with 2 equations.                    

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

ชื่อ AlgCalc AlgCalc
ID lnbmflejimfoigldelhhmkglhedonboi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/algcalc/lnbmflejimfoigldelhhmkglhedonboi
คำอธิบาย An algebra calculator
ขนาดไฟล์ 361 KB
จำนวนการติดตั้ง 1,000
เวอร์ชันปัจจุบัน 1.4
อัปเดตครั้งล่าสุด 2022-11-03
วันที่เผยแพร่ 2022-10-15
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา https://mrbubbles.dev
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AlgCalc",
    "description": "An algebra calculator",
    "version": "1.4",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "js\/contextmenus.js"
            ],
            "matches": [
                "*:\/\/*.ixl.com\/*"
            ]
        }
    ],
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/*.ixl.com\/*"
    ],
    "action": {
        "default_title": "AlgCalc",
        "default_icon": "assets\/icon-128.png",
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "16": "assets\/icon-16.png",
        "128": "assets\/icon-128.png"
    }
}