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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
    }
}