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"
    }
}