Desmos Unlocked

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

什麼是Desmos Unlocked?

Desmos Unlocked是由sinclam.dev開發的Chrome擴展程式,該擴展的主要功能是“Browser extension for better user control of the Desmos graphing calculator configuration”。

擴展截圖

screenshot
screenshot
screenshot

下載Desmos Unlocked擴展crx文件

下載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
官方網址 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"
    }
}