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开发的Chrome扩展程序,该扩展的主要功能是“Autosave your code in the GEE editor in case the webpage collapses.”。
扩展截图
下载Google Earth Engine Autosave扩展crx文件
下载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\/*" ] } ] } |