Shelly

A new interface for GAE's remote-api shell

什麼是Shelly?

Shelly是由andrepleblanc開發的Chrome擴展程式,該擴展的主要功能是“A new interface for GAE's remote-api shell”。

擴展截圖

screenshot

下載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                    

擴展基本資訊

名稱 Shelly Shelly
ID eanldmgjeaiijipoefnfgnkdlmhbgoan
官方網址 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"
}