Shelly
A new interface for GAE's remote-api shell
什么是Shelly?
Shelly是由andrepleblanc开发的Chrome扩展程序,该扩展的主要功能是“A new interface for GAE's remote-api shell”。
扩展截图
下载Shelly扩展crx文件
下载Shelly扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 扩展基本信息
| 名称 | |
| ID | eanldmgjeaiijipoefnfgnkdlmhbgoan |
| 官方URL | https://chrome.google.com/webstore/detail/shelly/eanldmgjeaiijipoefnfgnkdlmhbgoan |
| 简介 | A new interface for GAE's remote-api shell |
| 文件大小 | 159 KB |
| 安装次数 | 271 |
| 当前版本 | 1.0.1 |
| 更新时间 | 2019-03-08 |
| 上架时间 | 2019-03-08 |
| 评分 | 5.00/5 共3次评分 |
| 开发者 | andrepleblanc |
| 付费类型 | free |
| 扩展官网 | http://github.com/andrepl/Shelly/ |
| 帮助页面URL | http://github.com/andrepl/Shelly/ |
| 支持的语言 | 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"
} | |