Shelly

A new interface for GAE's remote-api shell

Co to jest Shelly?

Shelly to rozszerzenie Chrome opracowane przez andrepleblanc, a jego główną funkcją jest „A new interface for GAE's remote-api shell”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Shelly

Pobierz pliki rozszerzeń Shelly w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Shelly Shelly
ID eanldmgjeaiijipoefnfgnkdlmhbgoan
Oficjalny URL https://chrome.google.com/webstore/detail/shelly/eanldmgjeaiijipoefnfgnkdlmhbgoan
Opis A new interface for GAE's remote-api shell
Rozmiar pliku 159 KB
Liczba instalacji 271
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2019-03-08
Data Publikacji 2019-03-08
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper andrepleblanc
Typ Płatności free
Strona Rozszerzenia http://github.com/andrepl/Shelly/
Adres URL Strony Pomocy http://github.com/andrepl/Shelly/
Obsługiwane Języki 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"
}