Web tracker

Record HTTP request response pairs on chosen sites

什么是Web tracker?

Web tracker是由tomasbortoli开发的Chrome扩展程序,该扩展的主要功能是“Record HTTP request response pairs on chosen sites”。

下载Web tracker扩展crx文件

下载Web tracker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Sperimental tool that tracks all the web request response pairs, heaeders included in JSON files.

The collected data are saved locally. Not sent anywhere. Data might be further used to study the interactions, extract data or for browser simulations.

Once the app is tracking, passwords sent over tracked sites will move the password to the JSON file too. The author does not provide any warranty for the product. See the license for details.                    

扩展基本信息

名称 Web tracker Web tracker
ID ohgpccmhcokfdjmbahhocecmdamegpap
官方URL https://chrome.google.com/webstore/detail/ohgpccmhcokfdjmbahhocecmdamegpap
简介 Record HTTP request response pairs on chosen sites
文件大小 18.45 KB
安装次数 18
当前版本 0.1
更新时间 2017-08-26
上架时间 2017-08-26
开发者 tomasbortoli
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Record HTTP request response pairs on chosen sites",
    "manifest_version": 2,
    "name": "Web tracker",
    "version": "0.1",
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "53.0"
        }
    },
    "permissions": [
        "activeTab",
        "tabs",
        "webRequest",
        "",
        "downloads"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_title": "Record requests",
        "default_popup": "popup\/popup.html",
        "browser_style": true
    }
}