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.
Was ist HTTP Graph Collector?
HTTP Graph Collector ist eine Chrome-Erweiterung, die von https://phreakocious.net entwickelt wurde, und ihr Hauptmerkmal ist "Accompanies the HTTP Graph plugin for Gephi. Collects minimal HTTP and HTTPS header data and POSTs to a REST API as you browse.".
Erweiterungsscreenshots
HTTP Graph Collector-Erweiterungs-CRX-Datei herunterladen
Laden Sie HTTP Graph Collector-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | HTTP Graph Collector |
ID | lkkdeokncfjlinldgikoabgknklnnkoe |
Offizielle URL | https://chromewebstore.google.com/detail/http-graph-collector/lkkdeokncfjlinldgikoabgknklnnkoe |
Beschreibung | Accompanies the HTTP Graph plugin for Gephi. Collects minimal HTTP and HTTPS header data and POSTs to a REST API as you browse. |
Dateigröße | 37.28 KB |
Installationsanzahl | 1,000 |
Aktuelle Version | 0.3 |
Letztes Update | 2022-09-07 |
Veröffentlichungsdatum | 2017-01-30 |
Bewertung | 4.50/5 Insgesamt 2 Bewertungen |
Entwickler | https://phreakocious.net |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/phreakocious/HTTP-Graph-Collector |
Hilfeseite URL | https://github.com/phreakocious/HTTP-Graph-Collector/issues |
Unterstützte Sprachen | 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 } } |