Desmos Auto Save

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

Co to jest Desmos Auto Save?

Desmos Auto Save to rozszerzenie Chrome opracowane przez Thijs S, a jego główną funkcją jest „Automatically save your Desmos projects! Never lose your work again.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Desmos Auto Save

Pobierz pliki rozszerzeń Desmos Auto Save w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

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

Podstawowe informacje o rozszerzeniu

Nazwa Desmos Auto Save Desmos Auto Save
ID cijdbpjdomlnlhlbjajbpofgdgkhfcif
Oficjalny URL https://chromewebstore.google.com/detail/desmos-auto-save/cijdbpjdomlnlhlbjajbpofgdgkhfcif
Opis Automatically save your Desmos projects! Never lose your work again.
Rozmiar pliku 21.24 KB
Liczba instalacji 786
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2023-03-30
Data Publikacji 2021-08-28
Ocena 4.56/5 Łącznie 9 Oceny
Deweloper Thijs S
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/tandpfun/desmos-autosave
Adres URL Strony Pomocy https://github.com/tandpfun/desmos-autosave/issues/new
Obsługiwane Języki 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"
    }
}