DesModder for Desmos

Supercharge your Desmos graph creation and sharing experience with many convenient features

DesModder for Desmosとは何ですか?

DesModder for DesmosはJared Hughesによって開発されたChromeの拡張機能で、その主な機能は「Supercharge your Desmos graph creation and sharing experience with many convenient features」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

DesModder for Desmos拡張機能のCRXファイルをダウンロード

DesModder for Desmos拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Supercharge your Desmos graph creation and sharing experience with many convenient features:

- Core
  - Adjust settings that can let you hide the keypad, lock the viewport, and more
  - Render implicit-filled expressions on the GPU
  - Export videos and GIFs of your graphs based on actions or sliders
  - View expressions in a text editor (Beta)
  - Autocomplete variable names, jump to definitions, and create/use your own documentation.
- Utility
  - Paste ASCIIMath (such as the results of Wolfram Alpha queries) into Desmos
  - Pin expressions to the top
  - Find and replace expressions
  - Display graph performance metrics
  - Adds right-click (instead of long press) on expressions to style them
  - Duplicate any expression with hotkey Ctrl+Q
  - Use Shift+Enter to write newlines in notes
  - Quickly dump a folder's entire contents, and merge expressions into a folder
  - Tweak equation input settings to make typing equations easier.
  - Measure the size of expressions for Code Golfing purposes.
- Visual
  - Change the primary color from blue to any color
  - Toggle display of expression IDs
  - Display list elements, colors, and undefined values in expression list
  - View tips including lesser-known features of Desmos
  - Hide and ignore unwanted slider suggestions
  - Make the UI more compact to see more on the screen at once.
  - Split expressions onto multiple lines.
  - Highlight brackets to make complicated expressions easier to read.
- Integration
  - Integration with WakaTime
- More to come!

All graphs created using this extension are compatible with vanilla Desmos. This means your graphs are always safe to share with others, regardless of whether or not they have DesModder.

- One small exception: expressions rendered using GLesmos may be much slower for people without the feature.

Chrome will warn you asking for permission for the declarativeNetRequest API ("Block content on any page you visit"). In this case, the warning is inaccurate because the net request rules apply [only to Desmos](https://github.com/DesModder/DesModder/blob/main/public/chrome/net_request_rules.json) and simply modify response headers to provide permissions that enable in-browser video export. This extension follows Chrome's best practices and is open source (https://github.com/DesModder/DesModder), so you and others can contribute and see what goes on in the background.

Keep in mind that many features of this extension rely on unofficial, undocumented, or unstable parts of Desmos. When something stops working, report it on http://github.com/DesModder/DesModder/issues with a description of the issue.

Currently only works on the public-facing calculator at https://desmos.com/calculator.

Not affiliated with Desmos.                    

拡張機能の基本情報

名前 DesModder for Desmos DesModder for Desmos
ID eclmfdfimjhkmjglgdldedokjaemjfjp
公式URL https://chromewebstore.google.com/detail/desmodder-for-desmos/eclmfdfimjhkmjglgdldedokjaemjfjp
説明 Supercharge your Desmos graph creation and sharing experience with many convenient features
ファイルサイズ 469 KB
インストール数 6,000
現在のバージョン 0.12.9
最終更新日 2024-02-09
公開日 2021-04-06
評価 5.00/5 合計 21 レビュー
開発者 Jared Hughes
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://www.desmodder.com/
ヘルプページのURL https://github.com/jared-hughes/DesModder/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DesModder for Desmos",
    "description": "Supercharge your Desmos graph creation and sharing experience with many convenient features",
    "manifest_version": 3,
    "version": "0.12.9",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": [],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.desmos.com\/calculator*",
                "*:\/\/*.desmos.com\/geometry*",
                "*:\/\/*.desmos.com\/3d*"
            ],
            "run_at": "document_start",
            "js": [
                "preload\/content.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "script.css",
                "script.js",
                "preload\/script.js"
            ],
            "matches": [
                "*:\/\/*.desmos.com\/*"
            ]
        }
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset_1",
                "enabled": true,
                "path": "net_request_rules.json"
            }
        ]
    },
    "permissions": [
        "storage",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        "https:\/\/*.desmos.com\/*",
        "https:\/\/wakatime.com\/"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/*.desmos.com\/*"
        ]
    }
}