Chrome-REPL

Chrome REPL

What is Chrome-REPL?

Chrome-REPL is a Chrome extension developed by http://blog.diniscruz.com, and its main feature is "Chrome REPL".

Extension Screenshots

screenshot
screenshot
screenshot

Download Chrome-REPL Extension CRX File

Download Chrome-REPL extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Chrome-REPL Chrome-REPL
ID ojmdmeehmpkpkkhbifimekflgmnmeihg
Official URL https://chrome.google.com/webstore/detail/chrome-repl/ojmdmeehmpkpkkhbifimekflgmnmeihg
Description Chrome REPL
File Size 2.32 MB
Installation Count 85
Current Version 0.0.9
Last Updated 2014-11-21
Publish Date 2014-11-21
Rating 3.00/5 Total 2 Ratings
Developer http://blog.diniscruz.com
Payment Type free
Extension Website https://github.com/o2platform/chrome-repl
Help Page URL https://github.com/o2platform/chrome-repl/issues
Supported Languages 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'"
}