Shelly

A new interface for GAE's remote-api shell

Apa itu Shelly?

Shelly adalah ekstensi Chrome yang dikembangkan oleh andrepleblanc, dan fitur utamanya adalah "A new interface for GAE's remote-api shell".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Shelly

Unduh file ekstensi Shelly dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Shelly Shelly
ID eanldmgjeaiijipoefnfgnkdlmhbgoan
URL Resmi https://chrome.google.com/webstore/detail/shelly/eanldmgjeaiijipoefnfgnkdlmhbgoan
Deskripsi A new interface for GAE's remote-api shell
Ukuran File 159 KB
Jumlah Instalasi 271
Versi Saat Ini 1.0.1
Terakhir Diperbarui 2019-03-08
Tanggal Publikasi 2019-03-08
Penilaian 5.00/5 Total 3 Penilaian
Pengembang andrepleblanc
Tipe Pembayaran free
Situs Ekstensi http://github.com/andrepl/Shelly/
URL Halaman Bantuan http://github.com/andrepl/Shelly/
Bahasa yang Didukung 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"
}