Google Earth Engine Autosave
Autosave your code in the GEE editor in case the webpage collapses.
Τι είναι το Google Earth Engine Autosave;
Το Google Earth Engine Autosave είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Gabriel Wu, και η κύρια λειτουργία του είναι "Autosave your code in the GEE editor in case the webpage collapses.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Google Earth Engine Autosave
Λήψη αρχείων επέκτασης Google Earth Engine Autosave σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Google Earth Engine Autosave |
ID | clmadhnfadeiakdnohhnabdnabikpcja |
Επίσημο URL | https://chromewebstore.google.com/detail/google-earth-engine-autos/clmadhnfadeiakdnohhnabdnabikpcja |
Περιγραφή | Autosave your code in the GEE editor in case the webpage collapses. |
Μέγεθος Αρχείου | 15.88 KB |
Αριθμός Εγκαταστάσεων | 191 |
Τρέχουσα Έκδοση | 0.1 |
Τελευταία Ενημέρωση | 2021-11-12 |
Ημερομηνία Δημοσίευσης | 2021-11-11 |
Προγραμματιστής | Gabriel Wu |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/lucifer1004/gee-autosave |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/lucifer1004/gee-autosave |
Υποστηριζόμενες Γλώσσες | 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\/*" ] } ] } |