Desmos Unlocked

Browser extension for better user control of the Desmos graphing calculator configuration

Desmos Unlockedคืออะไร?

Desmos Unlocked เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sinclam.dev และคุณลักษณะหลักของมันคือ "Browser extension for better user control of the Desmos graphing calculator configuration"

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

screenshot
screenshot
screenshot

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

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

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

                        Write beautiful equations in the Desmos graphing calculator by customizing the underlying math formula editor from an easy-to-use control panel. Gain access to more Greek letters + many other symbols.

 	
Desmos provides shortcuts for a limited amount of symbols (e.g pi, theta, sqrt) by default and this browser extension expands shortcut functionality to hundreds of new symbols, including Greek letters and more advanced mathematical symbols. Compatible with DesModder!                    

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

ชื่อ Desmos Unlocked Desmos Unlocked
ID mgkcmbkophlnagckoodcmaeofginaokm
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/desmos-unlocked/mgkcmbkophlnagckoodcmaeofginaokm
คำอธิบาย Browser extension for better user control of the Desmos graphing calculator configuration
ขนาดไฟล์ 442 KB
จำนวนการติดตั้ง 471
เวอร์ชันปัจจุบัน 1.1.2
อัปเดตครั้งล่าสุด 2022-07-26
วันที่เผยแพร่ 2022-06-16
คะแนน 3.25/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา sinclam.dev
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/SinclaM/desmos-unlocked/
URL หน้าช่วยเหลือ https://github.com/SinclaM/desmos-unlocked/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Desmos Unlocked",
    "version": "1.1.2",
    "description": "Browser extension for better user control of the Desmos graphing calculator configuration",
    "permissions": [
        "storage",
        "declarativeNetRequestWithHostAccess"
    ],
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "browser-polyfill.js",
                "content.js"
            ],
            "matches": [
                "https:\/\/www.desmos.com\/calculator\/*"
            ],
            "run_at": "document_idle"
        },
        {
            "js": [
                "browser-polyfill.js",
                "preloadContent.js"
            ],
            "matches": [
                "https:\/\/www.desmos.com\/calculator*"
            ],
            "run_at": "document_start"
        }
    ],
    "host_permissions": [
        "*:\/\/www.desmos.com\/calculator\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "browser-polyfill.js",
                "script.js",
                "preloadScript.js",
                "empty.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/logo\/16.png",
            "32": "images\/logo\/32.png",
            "48": "images\/logo\/48.png",
            "128": "images\/logo\/128.png"
        }
    },
    "icons": {
        "16": "images\/logo\/16.png",
        "32": "images\/logo\/32.png",
        "48": "images\/logo\/48.png",
        "128": "images\/logo\/128.png"
    }
}