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.」です。

拡張機能のスクリーンショット

screenshot

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 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
Eメール [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\/*"
            ]
        }
    ]
}