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
官方網址 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'"
}