Shelly

A new interface for GAE's remote-api shell

ما هو Shelly؟

Shelly هو إضافة Chrome تم تطويرها بواسطة andrepleblanc، والميزة الرئيسية لها هي "A new interface for GAE's remote-api shell".

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

screenshot

تحميل ملف CRX للإضافة Shelly

قم بتنزيل ملفات الامتداد Shelly بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Shelly is a Chrome Extension which takes over the default Google Appengine Remote API Shell page at yourapp.appspot.com/shell/, and replaces it with convenient interface based on the fantastic web-based code editor CodeMirror.

Shelly supports:

- full Python syntax highlighting courtesy of CodeMirror
- saving and loading of scripts from localStorage.
- re-execute and or edit a previously executed script from the output console.
- quickly select all output with a double-click                    

معلومات أساسية عن التمديد

الاسم Shelly Shelly
ID eanldmgjeaiijipoefnfgnkdlmhbgoan
عنوان URL الرسمي https://chrome.google.com/webstore/detail/shelly/eanldmgjeaiijipoefnfgnkdlmhbgoan
الوصف A new interface for GAE's remote-api shell
حجم الملف 159 KB
عدد التثبيتات 271
النسخة الحالية 1.0.1
آخر تحديث 2019-03-08
تاريخ النشر 2019-03-08
تقييم 5.00/5 مجموع تقييمات 3
المطور andrepleblanc
نوع الدفع free
موقع الإضافة http://github.com/andrepl/Shelly/
عنوان صفحة المساعدة http://github.com/andrepl/Shelly/
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "web_accessible_resources": [
        "fontawesome-webfont.svg"
    ],
    "name": "Shelly",
    "short_name": "Shelly",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/localhost\/shell\/",
                "*:\/\/*.appspot.com\/shell\/"
            ],
            "css": [
                "font-awesome.css",
                "shelly.css"
            ],
            "js": [
                "shelly.js"
            ]
        }
    ],
    "icons": {
        "128": "images\/icon128.png",
        "48": "images\/icon48.png",
        "16": "images\/icon16.png"
    },
    "version": "1.0.1",
    "manifest_version": 2,
    "permissions": [
        "activeTab",
        "storage"
    ],
    "description": "A new interface for GAE's remote-api shell"
}