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.
Hvad er HTTP Graph Collector?
HTTP Graph Collector er en Chrome-udvidelse udviklet af https://phreakocious.net, og dens hovedfunktion er "Accompanies the HTTP Graph plugin for Gephi. Collects minimal HTTP and HTTPS header data and POSTs to a REST API as you browse.".
Udvidelsesskærmbilleder
Download HTTP Graph Collector-udvidelses-CRX-fil
Download HTTP Graph Collector-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | HTTP Graph Collector |
ID | lkkdeokncfjlinldgikoabgknklnnkoe |
Officiel URL | https://chromewebstore.google.com/detail/http-graph-collector/lkkdeokncfjlinldgikoabgknklnnkoe |
Beskrivelse | Accompanies the HTTP Graph plugin for Gephi. Collects minimal HTTP and HTTPS header data and POSTs to a REST API as you browse. |
Filstørrelse | 37.28 KB |
Antal Installationer | 1,000 |
Nuværende Version | 0.3 |
Senest Opdateret | 2022-09-07 |
Udgivelsesdato | 2017-01-30 |
Bedømmelse | 4.50/5 Samlet 2 Bedømmelser |
Udvikler | https://phreakocious.net |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/phreakocious/HTTP-Graph-Collector |
Hjælpeside-URL | https://github.com/phreakocious/HTTP-Graph-Collector/issues |
Understøttede Sprog | 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 } } |