Google Earth Engine Autosave

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

ما هو Google Earth Engine Autosave؟

Google Earth Engine Autosave هو إضافة Chrome تم تطويرها بواسطة Gabriel Wu، والميزة الرئيسية لها هي "Autosave your code in the GEE editor in case the webpage collapses.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Google Earth Engine Autosave

قم بتنزيل ملفات الامتداد Google Earth Engine Autosave بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة 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\/*"
            ]
        }
    ]
}