Node.js V8 Inspector

Node.js V8 Inspector

Extension for launching V8 Inspector for Node.js debugging

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Node.js V8 Inspector",
  "version": "0.12.0",
  "manifest_version": 2,
  "description": "Extension for launching V8 Inspector for Node.js debugging",
  "author": "Continuation Labs <[email protected]> (http://continuation.io/)",
  "background": {
    "scripts": [
      "js/common.js",
      "js/load.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "images/logo32.png"
  },
  "icons": {
    "16": "images/logo16.png",
    "32": "images/logo32.png",
    "48": "images/logo48.png",
    "128": "images/logo128.png"
  },
  "permissions": [
    "http://*/",
    "storage",
    "notifications"
  ],
  "options_page": "settings.html",
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "windows": "Ctrl+Shift+8",
        "mac": "Command+Shift+8",
        "chromeos": "Ctrl+Shift+8",
        "linux": "Ctrl+Shift+8"
      }
    }
  }
}