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