Desmos Unlocked

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

Vad är Desmos Unlocked?

Desmos Unlocked är en Chrome-tillägg utvecklad av sinclam.dev, och dess huvudfunktion är "Browser extension for better user control of the Desmos graphing calculator configuration".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Desmos Unlocked-förlängningens CRX-fil

Ladda ner Desmos Unlocked-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn Desmos Unlocked Desmos Unlocked
ID mgkcmbkophlnagckoodcmaeofginaokm
Officiell webbadress https://chromewebstore.google.com/detail/desmos-unlocked/mgkcmbkophlnagckoodcmaeofginaokm
Beskrivning Browser extension for better user control of the Desmos graphing calculator configuration
Filstorlek 442 KB
Antal Installationer 471
Aktuell Version 1.1.2
Senast Uppdaterad 2022-07-26
Publiceringsdatum 2022-06-16
Betyg 3.25/5 Totalt 4 Betyg
Utvecklare sinclam.dev
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/SinclaM/desmos-unlocked/
Hjälpsida URL https://github.com/SinclaM/desmos-unlocked/issues
Stödda Språk 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"
    }
}