Desmos Auto Save

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

Desmos Auto Save là gì?

Desmos Auto Save là một tiện ích mở rộng Chrome được phát triển bởi Thijs S, và tính năng chính của nó là "Automatically save your Desmos projects! Never lose your work again.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Desmos Auto Save

Tải xuống các tệp mở rộng Desmos Auto Save dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Desmos Auto Save Desmos Auto Save
ID cijdbpjdomlnlhlbjajbpofgdgkhfcif
URL Chính Thức https://chromewebstore.google.com/detail/desmos-auto-save/cijdbpjdomlnlhlbjajbpofgdgkhfcif
Mô tả Automatically save your Desmos projects! Never lose your work again.
Kích Thước Tệp 21.24 KB
Số Lần Cài Đặt 786
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2023-03-30
Ngày Phát Hành 2021-08-28
Đánh Giá 4.56/5 Tổng số 9 Đánh Giá
Nhà Phát Triển Thijs S
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/tandpfun/desmos-autosave
URL Trang Trợ Giúp https://github.com/tandpfun/desmos-autosave/issues/new
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}