HTTP Graph Collector

HTTP Graph Collector

Accompanies the HTTP Graph plugin for Gephi. Collects minimal HTTP and HTTPS header data and POSTs to a REST API as you browse.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "HTTP Graph Collector",
  "version": "0.3",
  "description": "Accompanies the HTTP Graph plugin for Gephi.  Collects minimal HTTP and HTTPS header data and POSTs to a REST API as you browse.",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "webRequest",
    "storage"
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "httpgraph.js"
    ]
  },
  "icons": {
    "48": "httpgraph-48x48.png",
    "128": "httpgraph-128x128.png"
  },
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": false
  }
}