Desmos Auto Save
Automatically save your Desmos projects! Never lose your work again.
什麼是Desmos Auto Save?
Desmos Auto Save是由Thijs S開發的Chrome擴展程式,該擴展的主要功能是“Automatically save your Desmos projects! Never lose your work again.”。
擴展截圖
下載Desmos Auto Save擴展crx文件
下載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 |
ID | cijdbpjdomlnlhlbjajbpofgdgkhfcif |
官方網址 | 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" } } |