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.”。
扩展截图
下载HTTP Graph Collector扩展crx文件
下载HTTP Graph Collector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| 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
}
} | |