Shelly
A new interface for GAE's remote-api shell
¿Qué es Shelly?
Shelly es una extensión de Chrome desarrollada por andrepleblanc, y su función principal es "A new interface for GAE's remote-api shell".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Shelly
Descarga archivos de extensión Shelly en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | |
ID | eanldmgjeaiijipoefnfgnkdlmhbgoan |
URL Oficial | https://chrome.google.com/webstore/detail/shelly/eanldmgjeaiijipoefnfgnkdlmhbgoan |
Descripción | A new interface for GAE's remote-api shell |
Tamaño del Archivo | 159 KB |
Cantidad de Instalaciones | 271 |
Versión Actual | 1.0.1 |
Última Actualización | 2019-03-08 |
Fecha de Publicación | 2019-03-08 |
Calificación | 5.00/5 Total de 3 Calificaciones |
Desarrollador | andrepleblanc |
Tipo de Pago | free |
Sitio Web de la Extensión | http://github.com/andrepl/Shelly/ |
URL de la Página de Ayuda | http://github.com/andrepl/Shelly/ |
Idiomas Soportados | 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" } |