Desmos Auto Save
Automatically save your Desmos projects! Never lose your work again.
Cos'è Desmos Auto Save?
Desmos Auto Save è un'estensione di Chrome sviluppata da Thijs S, e la sua funzione principale è "Automatically save your Desmos projects! Never lose your work again.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Desmos Auto Save
Scarica i file di estensione Desmos Auto Save in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
You can enable and disable automatic save, and customize the duration between saves. Open source on Github: https://github.com/tandpfun/desmos-autosave
Informazioni di Base sull'Estensione
Nome | Desmos Auto Save |
ID | cijdbpjdomlnlhlbjajbpofgdgkhfcif |
URL Ufficiale | https://chromewebstore.google.com/detail/desmos-auto-save/cijdbpjdomlnlhlbjajbpofgdgkhfcif |
Descrizione | Automatically save your Desmos projects! Never lose your work again. |
Dimensione del File | 21.24 KB |
Conteggio Installazioni | 786 |
Versione Corrente | 1.2 |
Ultimo Aggiornamento | 2023-03-30 |
Data di Pubblicazione | 2021-08-28 |
Valutazione | 4.56/5 Totale 9 Valutazioni |
Sviluppatore | Thijs S |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/tandpfun/desmos-autosave |
URL della Pagina di Aiuto | https://github.com/tandpfun/desmos-autosave/issues/new |
Lingue Supportate | 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" } } |