Shelly
A new interface for GAE's remote-api shell
Cos'è Shelly?
Shelly è un'estensione di Chrome sviluppata da andrepleblanc, e la sua funzione principale è "A new interface for GAE's remote-api shell".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Shelly
Scarica i file di estensione Shelly in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | eanldmgjeaiijipoefnfgnkdlmhbgoan |
URL Ufficiale | https://chrome.google.com/webstore/detail/shelly/eanldmgjeaiijipoefnfgnkdlmhbgoan |
Descrizione | A new interface for GAE's remote-api shell |
Dimensione del File | 159 KB |
Conteggio Installazioni | 271 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2019-03-08 |
Data di Pubblicazione | 2019-03-08 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | andrepleblanc |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://github.com/andrepl/Shelly/ |
URL della Pagina di Aiuto | http://github.com/andrepl/Shelly/ |
Lingue Supportate | 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" } |