Chrome-REPL

Chrome REPL

Chrome-REPLとは何ですか?

Chrome-REPLはhttp://blog.diniscruz.comによって開発されたChromeの拡張機能で、その主な機能は「Chrome REPL」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Chrome-REPL拡張機能のCRXファイルをダウンロード

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