Google Earth Engine Autosave

Google Earth Engine Autosave

Autosave your code in the GEE editor in case the webpage collapses.

Merlin
Additional files are visible only to premium users

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/*"
      ]
    }
  ]
}