Desmos Unlocked

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

Desmos Unlocked là gì?

Desmos Unlocked là một tiện ích mở rộng Chrome được phát triển bởi sinclam.dev, và tính năng chính của nó là "Browser extension for better user control of the Desmos graphing calculator configuration".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Desmos Unlocked

Tải xuống các tệp mở rộng Desmos Unlocked dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Desmos Unlocked Desmos Unlocked
ID mgkcmbkophlnagckoodcmaeofginaokm
URL Chính Thức https://chromewebstore.google.com/detail/desmos-unlocked/mgkcmbkophlnagckoodcmaeofginaokm
Mô tả Browser extension for better user control of the Desmos graphing calculator configuration
Kích Thước Tệp 442 KB
Số Lần Cài Đặt 471
Phiên Bản Hiện Tại 1.1.2
Cập Nhật Lần Cuối 2022-07-26
Ngày Phát Hành 2022-06-16
Đánh Giá 3.25/5 Tổng số 4 Đánh Giá
Nhà Phát Triển sinclam.dev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/SinclaM/desmos-unlocked/
URL Trang Trợ Giúp https://github.com/SinclaM/desmos-unlocked/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}