Chrome-REPL

Chrome-REPL

Chrome REPL

Additional files are visible only to premium users

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