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.
Vad är HTTP Graph Collector?
HTTP Graph Collector är en Chrome-tillägg utvecklad av https://phreakocious.net, och dess huvudfunktion är "Accompanies the HTTP Graph plugin for Gephi. Collects minimal HTTP and HTTPS header data and POSTs to a REST API as you browse.".
Tilläggsskärmbilder
Ladda ner HTTP Graph Collector-förlängningens CRX-fil
Ladda ner HTTP Graph Collector-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
| Namn | |
| ID | lkkdeokncfjlinldgikoabgknklnnkoe |
| Officiell webbadress | https://chromewebstore.google.com/detail/http-graph-collector/lkkdeokncfjlinldgikoabgknklnnkoe |
| Beskrivning | Accompanies the HTTP Graph plugin for Gephi. Collects minimal HTTP and HTTPS header data and POSTs to a REST API as you browse. |
| Filstorlek | 37.28 KB |
| Antal Installationer | 1,000 |
| Aktuell Version | 0.3 |
| Senast Uppdaterad | 2022-09-07 |
| Publiceringsdatum | 2017-01-30 |
| Betyg | 4.50/5 Totalt 2 Betyg |
| Utvecklare | https://phreakocious.net |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/phreakocious/HTTP-Graph-Collector |
| Hjälpsida URL | https://github.com/phreakocious/HTTP-Graph-Collector/issues |
| Stödda Språk | 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
}
} | |