Google Earth Engine Autosave

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

Google Earth Engine Autosave là gì?

Google Earth Engine Autosave là một tiện ích mở rộng Chrome được phát triển bởi Gabriel Wu, và tính năng chính của nó là "Autosave your code in the GEE editor in case the webpage collapses.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Google Earth Engine Autosave

Tải xuống các tệp mở rộng Google Earth Engine Autosave dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Google Earth Engine Autosave Google Earth Engine Autosave
ID clmadhnfadeiakdnohhnabdnabikpcja
URL Chính Thức https://chromewebstore.google.com/detail/google-earth-engine-autos/clmadhnfadeiakdnohhnabdnabikpcja
Mô tả Autosave your code in the GEE editor in case the webpage collapses.
Kích Thước Tệp 15.88 KB
Số Lần Cài Đặt 191
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2021-11-12
Ngày Phát Hành 2021-11-11
Nhà Phát Triển Gabriel Wu
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/lucifer1004/gee-autosave
URL Trang Trợ Giúp https://github.com/lucifer1004/gee-autosave
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}