Desmos Unlocked

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

What is Desmos Unlocked?

Desmos Unlocked is a Chrome extension developed by sinclam.dev, and its main feature is "Browser extension for better user control of the Desmos graphing calculator configuration".

Extension Screenshots

screenshot
screenshot
screenshot

Download Desmos Unlocked Extension CRX File

Download Desmos Unlocked extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name Desmos Unlocked Desmos Unlocked
ID mgkcmbkophlnagckoodcmaeofginaokm
Official URL https://chromewebstore.google.com/detail/desmos-unlocked/mgkcmbkophlnagckoodcmaeofginaokm
Description Browser extension for better user control of the Desmos graphing calculator configuration
File Size 442 KB
Installation Count 471
Current Version 1.1.2
Last Updated 2022-07-26
Publish Date 2022-06-16
Rating 3.25/5 Total 4 Ratings
Developer sinclam.dev
Email [email protected]
Payment Type free
Extension Website https://github.com/SinclaM/desmos-unlocked/
Help Page URL https://github.com/SinclaM/desmos-unlocked/issues
Supported Languages 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"
    }
}