Shelly

A new interface for GAE's remote-api shell

O que é Shelly?

Shelly é uma extensão do Chrome desenvolvida por andrepleblanc, e sua principal característica é "A new interface for GAE's remote-api shell".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Shelly

Baixe arquivos de extensão Shelly no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Shelly Shelly
ID eanldmgjeaiijipoefnfgnkdlmhbgoan
URL Oficial https://chrome.google.com/webstore/detail/shelly/eanldmgjeaiijipoefnfgnkdlmhbgoan
Descrição A new interface for GAE's remote-api shell
Tamanho do Arquivo 159 KB
Contagem de Instalações 271
Versão Atual 1.0.1
Última Atualização 2019-03-08
Data de Publicação 2019-03-08
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor andrepleblanc
Tipo de Pagamento free
Site da Extensão http://github.com/andrepl/Shelly/
URL da Página de Ajuda http://github.com/andrepl/Shelly/
Idiomas Suportados 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"
}