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"
} | |