Shelly
A new interface for GAE's remote-api shell
What is Shelly?
Shelly is a Chrome extension developed by andrepleblanc, and its main feature is "A new interface for GAE's remote-api shell".
Extension Screenshots
Download Shelly Extension CRX File
Download Shelly extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | eanldmgjeaiijipoefnfgnkdlmhbgoan |
Official URL | https://chrome.google.com/webstore/detail/shelly/eanldmgjeaiijipoefnfgnkdlmhbgoan |
Description | A new interface for GAE's remote-api shell |
File Size | 159 KB |
Installation Count | 271 |
Current Version | 1.0.1 |
Last Updated | 2019-03-08 |
Publish Date | 2019-03-08 |
Rating | 5.00/5 Total 3 Ratings |
Developer | andrepleblanc |
Payment Type | free |
Extension Website | http://github.com/andrepl/Shelly/ |
Help Page URL | http://github.com/andrepl/Shelly/ |
Supported Languages | 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" } |