Desmos Auto Save
Automatically save your Desmos projects! Never lose your work again.
Wat is Desmos Auto Save?
Desmos Auto Save is een Chrome-extensie ontwikkeld door Thijs S, en de belangrijkste functie is "Automatically save your Desmos projects! Never lose your work again.".
Extensie Screenshots
Download het CRX-bestand van de extensie Desmos Auto Save
Download Desmos Auto Save-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
You can enable and disable automatic save, and customize the duration between saves. Open source on Github: https://github.com/tandpfun/desmos-autosave
Basisinformatie over de Extensie
Naam | Desmos Auto Save |
ID | cijdbpjdomlnlhlbjajbpofgdgkhfcif |
Officiële URL | https://chromewebstore.google.com/detail/desmos-auto-save/cijdbpjdomlnlhlbjajbpofgdgkhfcif |
Beschrijving | Automatically save your Desmos projects! Never lose your work again. |
Bestandsgrootte | 21.24 KB |
Aantal Installaties | 786 |
Huidige Versie | 1.2 |
Laatst Bijgewerkt | 2023-03-30 |
Publicatiedatum | 2021-08-28 |
Beoordeling | 4.56/5 Totaal 9 Beoordelingen |
Ontwikkelaar | Thijs S |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/tandpfun/desmos-autosave |
Help Pagina-URL | https://github.com/tandpfun/desmos-autosave/issues/new |
Ondersteunde Talen | 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" } } |