Google Earth Engine Autosave
Autosave your code in the GEE editor in case the webpage collapses.
Was ist Google Earth Engine Autosave?
Google Earth Engine Autosave ist eine Chrome-Erweiterung, die von Gabriel Wu entwickelt wurde, und ihr Hauptmerkmal ist "Autosave your code in the GEE editor in case the webpage collapses.".
Erweiterungsscreenshots
Google Earth Engine Autosave-Erweiterungs-CRX-Datei herunterladen
Laden Sie Google Earth Engine Autosave-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Google Earth Engine is a very useful tool. However, one must manually click the "save" button to save the code. This can cause loss of code when one unintendedly close the editor tab, or the tab crashes unexpectedly. This extension aims at preventing such loss by saving your code locally (in Chrome's localStorage), and restore the code when you open the same file (or a new file) again. The absolute file path is used to avoid collisions.
Grundlegende Informationen zur Erweiterung
Name | Google Earth Engine Autosave |
ID | clmadhnfadeiakdnohhnabdnabikpcja |
Offizielle URL | https://chromewebstore.google.com/detail/google-earth-engine-autos/clmadhnfadeiakdnohhnabdnabikpcja |
Beschreibung | Autosave your code in the GEE editor in case the webpage collapses. |
Dateigröße | 15.88 KB |
Installationsanzahl | 191 |
Aktuelle Version | 0.1 |
Letztes Update | 2021-11-12 |
Veröffentlichungsdatum | 2021-11-11 |
Entwickler | Gabriel Wu |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/lucifer1004/gee-autosave |
Hilfeseite URL | https://github.com/lucifer1004/gee-autosave |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Google Earth Engine Autosave", "description": "Autosave your code in the GEE editor in case the webpage collapses.", "version": "0.1", "icons": { "16": "icon.16.png", "32": "icon.32.png", "48": "icon.48.png", "64": "icon.64.png", "128": "icon.128.png", "256": "icon.256.png" }, "content_scripts": [ { "matches": [ "https:\/\/code.earthengine.google.com\/" ], "js": [ "content-script.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ { "resources": [ "code-watcher.js" ], "matches": [ "https:\/\/code.earthengine.google.com\/*" ] } ] } |