Chrome-REPL

Chrome REPL

Τι είναι το Chrome-REPL;

Το Chrome-REPL είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://blog.diniscruz.com, και η κύρια λειτουργία του είναι "Chrome REPL".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Chrome-REPL

Λήψη αρχείων επέκτασης Chrome-REPL σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Simple REPL that exposes the chrome extension objects.

Great for quickly scripting website's contents or to learn the Chrome extension APIs

For more install and usage details see this blog post: http://blog.diniscruz.com/2014/11/chrome-repl-first-o2-platform-chrome.html                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Chrome-REPL Chrome-REPL
ID ojmdmeehmpkpkkhbifimekflgmnmeihg
Επίσημο URL https://chrome.google.com/webstore/detail/chrome-repl/ojmdmeehmpkpkkhbifimekflgmnmeihg
Περιγραφή Chrome REPL
Μέγεθος Αρχείου 2.32 MB
Αριθμός Εγκαταστάσεων 85
Τρέχουσα Έκδοση 0.0.9
Τελευταία Ενημέρωση 2014-11-21
Ημερομηνία Δημοσίευσης 2014-11-21
Αξιολόγηση 3.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής http://blog.diniscruz.com
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/o2platform/chrome-repl
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/o2platform/chrome-repl/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chrome-REPL",
    "version": "0.0.9",
    "manifest_version": 2,
    "description": "Chrome REPL",
    "icons": {
        "16": "images\/exec.png",
        "128": "images\/exec.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/helpers\/storage.helper.js",
            "scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/exec.png",
            "38": "images\/exec.png"
        },
        "default_title": "Chrome REPL",
        "default_popup": "options.html"
    },
    "devtools_page": "devtools.html",
    "options_page": "options.html",
    "omnibox": {
        "keyword": "Chrome REPL"
    },
    "permissions": [
        "tabs",
        "notifications",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}