Desmos Auto Save

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

Что такое Desmos Auto Save?

Desmos Auto Save - это расширение Chrome, разработанное Thijs S, и его основная функция - "Automatically save your Desmos projects! Never lose your work again.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Desmos Auto Save

Скачайте файлы расширений 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
Электронная почта [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"
    }
}