Shelly
A new interface for GAE's remote-api shell
Was ist Shelly?
Shelly ist eine Chrome-Erweiterung, die von andrepleblanc entwickelt wurde, und ihr Hauptmerkmal ist "A new interface for GAE's remote-api shell".
Erweiterungsscreenshots
Shelly-Erweiterungs-CRX-Datei herunterladen
Laden Sie Shelly-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | |
ID | eanldmgjeaiijipoefnfgnkdlmhbgoan |
Offizielle URL | https://chrome.google.com/webstore/detail/shelly/eanldmgjeaiijipoefnfgnkdlmhbgoan |
Beschreibung | A new interface for GAE's remote-api shell |
Dateigröße | 159 KB |
Installationsanzahl | 271 |
Aktuelle Version | 1.0.1 |
Letztes Update | 2019-03-08 |
Veröffentlichungsdatum | 2019-03-08 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | andrepleblanc |
Zahlungsart | free |
Erweiterungswebsite | http://github.com/andrepl/Shelly/ |
Hilfeseite URL | http://github.com/andrepl/Shelly/ |
Unterstützte Sprachen | 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" } |