Shelly

A new interface for GAE's remote-api shell

Qu'est-ce que Shelly ?

Shelly est une extension Chrome développée par andrepleblanc, et sa fonction principale est "A new interface for GAE's remote-api shell".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Shelly

Téléchargez les fichiers d'extension Shelly au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Shelly Shelly
ID eanldmgjeaiijipoefnfgnkdlmhbgoan
URL Officiel https://chrome.google.com/webstore/detail/shelly/eanldmgjeaiijipoefnfgnkdlmhbgoan
Description A new interface for GAE's remote-api shell
Taille du Fichier 159 KB
Nombre d'Installations 271
Version Actuelle 1.0.1
Dernière Mise à Jour 2019-03-08
Date de Publication 2019-03-08
Évaluation 5.00/5 Total 3 Évaluations
Développeur andrepleblanc
Type de Paiement free
Site Web de l'Extension http://github.com/andrepl/Shelly/
URL de la Page d'Aide http://github.com/andrepl/Shelly/
Langues Prises en Charge 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"
}