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.

What is HTTP Graph Collector?

HTTP Graph Collector is a Chrome extension developed by https://phreakocious.net, and its main feature is "Accompanies the HTTP Graph plugin for Gephi. Collects minimal HTTP and HTTPS header data and POSTs to a REST API as you browse.".

Extension Screenshots

screenshot

Download HTTP Graph Collector Extension CRX File

Download HTTP Graph Collector extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        HTTP Graph is a plugin for Gephi which lets you build a graph of web relationships as you browse. Data is collected by this Chrome extension and sent to the plugin via REST calls.                    

Extension Basic Information

Name HTTP Graph Collector HTTP Graph Collector
ID lkkdeokncfjlinldgikoabgknklnnkoe
Official URL https://chromewebstore.google.com/detail/http-graph-collector/lkkdeokncfjlinldgikoabgknklnnkoe
Description Accompanies the HTTP Graph plugin for Gephi. Collects minimal HTTP and HTTPS header data and POSTs to a REST API as you browse.
File Size 37.28 KB
Installation Count 1,000
Current Version 0.3
Last Updated 2022-09-07
Publish Date 2017-01-30
Rating 4.50/5 Total 2 Ratings
Developer https://phreakocious.net
Email [email protected]
Payment Type free
Extension Website https://github.com/phreakocious/HTTP-Graph-Collector
Help Page URL https://github.com/phreakocious/HTTP-Graph-Collector/issues
Supported Languages en-US
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
    }
}