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.

HTTP Graph Collector란 무엇입니까?

HTTP Graph Collector은(는) https://phreakocious.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Accompanies the HTTP Graph plugin for Gephi. Collects minimal HTTP and HTTPS header data and POSTs to a REST API as you browse."입니다.

확장 프로그램 스크린샷

screenshot

HTTP Graph Collector 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 HTTP Graph Collector HTTP Graph Collector
ID lkkdeokncfjlinldgikoabgknklnnkoe
공식 URL https://chromewebstore.google.com/detail/http-graph-collector/lkkdeokncfjlinldgikoabgknklnnkoe
설명 Accompanies the HTTP Graph plugin for Gephi. Collects minimal HTTP and HTTPS header data and POSTs to a REST API as you browse.
파일 크기 37.28 KB
설치 횟수 1,000
현재 버전 0.3
최근 업데이트 2022-09-07
출시 날짜 2017-01-30
평점 4.50/5 총 2 개의 평점
개발자 https://phreakocious.net
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/phreakocious/HTTP-Graph-Collector
도움말 페이지 URL https://github.com/phreakocious/HTTP-Graph-Collector/issues
지원되는 언어 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
    }
}