Shelly

A new interface for GAE's remote-api shell

Co je Shelly?

Shelly je rozšíření Chrome vyvinuté andrepleblanc, a jeho hlavní funkcí je „A new interface for GAE's remote-api shell“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Shelly

Stáhněte si soubory rozšíření Shelly ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Shelly Shelly
ID eanldmgjeaiijipoefnfgnkdlmhbgoan
Oficiální URL https://chrome.google.com/webstore/detail/shelly/eanldmgjeaiijipoefnfgnkdlmhbgoan
Popis A new interface for GAE's remote-api shell
Velikost souboru 159 KB
Počet instalací 271
Aktuální Verze 1.0.1
Poslední Aktualizace 2019-03-08
Datum Vydání 2019-03-08
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář andrepleblanc
Typ Platby free
Webové stránky Rozšíření http://github.com/andrepl/Shelly/
URL Stránky Nápovědy http://github.com/andrepl/Shelly/
Podporované Jazyky 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"
}