Desmos Auto Save

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

What is Desmos Auto Save?

Desmos Auto Save is a Chrome extension developed by Thijs S, and its main feature is "Automatically save your Desmos projects! Never lose your work again.".

Extension Screenshots

screenshot

Download Desmos Auto Save Extension CRX File

Download Desmos Auto Save extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

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

Extension Basic Information

Name Desmos Auto Save Desmos Auto Save
ID cijdbpjdomlnlhlbjajbpofgdgkhfcif
Official URL https://chromewebstore.google.com/detail/desmos-auto-save/cijdbpjdomlnlhlbjajbpofgdgkhfcif
Description Automatically save your Desmos projects! Never lose your work again.
File Size 21.24 KB
Installation Count 786
Current Version 1.2
Last Updated 2023-03-30
Publish Date 2021-08-28
Rating 4.56/5 Total 9 Ratings
Developer Thijs S
Email [email protected]
Payment Type free
Extension Website https://github.com/tandpfun/desmos-autosave
Help Page URL https://github.com/tandpfun/desmos-autosave/issues/new
Supported Languages 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"
    }
}