Google Earth Engine Autosave
Autosave your code in the GEE editor in case the webpage collapses.
Google Earth Engine Autosave क्या है?
Google Earth Engine Autosave Gabriel Wu द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Autosave your code in the GEE editor in case the webpage collapses."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Google Earth Engine Autosave एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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\/*" ] } ] } |