Desmos Auto Save

Automatically save your Desmos projects! Never lose your work again.

Desmos Auto Saveとは何ですか?

Desmos Auto SaveはThijs Sによって開発されたChromeの拡張機能で、その主な機能は「Automatically save your Desmos projects! Never lose your work again.」です。

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

screenshot

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

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

拡張機能の使用方法

                        You can enable and disable automatic save, and customize the duration between saves.

Open source on Github: https://github.com/tandpfun/desmos-autosave                    

拡張機能の基本情報

名前 Desmos Auto Save Desmos Auto Save
ID cijdbpjdomlnlhlbjajbpofgdgkhfcif
公式URL https://chromewebstore.google.com/detail/desmos-auto-save/cijdbpjdomlnlhlbjajbpofgdgkhfcif
説明 Automatically save your Desmos projects! Never lose your work again.
ファイルサイズ 21.24 KB
インストール数 786
現在のバージョン 1.2
最終更新日 2023-03-30
公開日 2021-08-28
評価 4.56/5 合計 9 レビュー
開発者 Thijs S
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/tandpfun/desmos-autosave
ヘルプページのURL https://github.com/tandpfun/desmos-autosave/issues/new
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Desmos Auto Save",
    "version": "1.2",
    "description": "Automatically save your Desmos projects! Never lose your work again.",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "action": {
        "default_popup": "src\/popup.html",
        "default_icon": {
            "16": "\/img\/desmos_autosave16.png",
            "32": "\/img\/desmos_autosave32.png",
            "48": "\/img\/desmos_autosave48.png",
            "128": "\/img\/desmos_autosave128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.desmos.com\/calculator\/*"
            ],
            "js": [
                "src\/autosaver.js"
            ]
        }
    ],
    "icons": {
        "16": "\/img\/desmos_autosave16.png",
        "32": "\/img\/desmos_autosave32.png",
        "48": "\/img\/desmos_autosave48.png",
        "128": "\/img\/desmos_autosave128.png"
    }
}