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.

Apa itu HTTP Graph Collector?

HTTP Graph Collector adalah ekstensi Chrome yang dikembangkan oleh https://phreakocious.net, dan fitur utamanya adalah "Accompanies the HTTP Graph plugin for Gephi. Collects minimal HTTP and HTTPS header data and POSTs to a REST API as you browse.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi HTTP Graph Collector

Unduh file ekstensi HTTP Graph Collector dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama HTTP Graph Collector HTTP Graph Collector
ID lkkdeokncfjlinldgikoabgknklnnkoe
URL Resmi https://chromewebstore.google.com/detail/http-graph-collector/lkkdeokncfjlinldgikoabgknklnnkoe
Deskripsi Accompanies the HTTP Graph plugin for Gephi. Collects minimal HTTP and HTTPS header data and POSTs to a REST API as you browse.
Ukuran File 37.28 KB
Jumlah Instalasi 1,000
Versi Saat Ini 0.3
Terakhir Diperbarui 2022-09-07
Tanggal Publikasi 2017-01-30
Penilaian 4.50/5 Total 2 Penilaian
Pengembang https://phreakocious.net
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/phreakocious/HTTP-Graph-Collector
URL Halaman Bantuan https://github.com/phreakocious/HTTP-Graph-Collector/issues
Bahasa yang Didukung 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
    }
}