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.

Co to jest HTTP Graph Collector?

HTTP Graph Collector to rozszerzenie Chrome opracowane przez https://phreakocious.net, a jego główną funkcją jest „Accompanies the HTTP Graph plugin for Gephi. Collects minimal HTTP and HTTPS header data and POSTs to a REST API as you browse.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia HTTP Graph Collector

Pobierz pliki rozszerzeń HTTP Graph Collector w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa HTTP Graph Collector HTTP Graph Collector
ID lkkdeokncfjlinldgikoabgknklnnkoe
Oficjalny URL https://chromewebstore.google.com/detail/http-graph-collector/lkkdeokncfjlinldgikoabgknklnnkoe
Opis Accompanies the HTTP Graph plugin for Gephi. Collects minimal HTTP and HTTPS header data and POSTs to a REST API as you browse.
Rozmiar pliku 37.28 KB
Liczba instalacji 1,000
Aktualna Wersja 0.3
Ostatnia Aktualizacja 2022-09-07
Data Publikacji 2017-01-30
Ocena 4.50/5 Łącznie 2 Oceny
Deweloper https://phreakocious.net
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/phreakocious/HTTP-Graph-Collector
Adres URL Strony Pomocy https://github.com/phreakocious/HTTP-Graph-Collector/issues
Obsługiwane Języki 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
    }
}