Shelly

A new interface for GAE's remote-api shell

Shellyคืออะไร?

Shelly เป็นส่วนขยายของ Chrome ที่พัฒนาโดย andrepleblanc และคุณลักษณะหลักของมันคือ "A new interface for GAE's remote-api shell"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Shelly

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
}