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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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\/*"
            ]
        }
    ]
}