Web tracker

Record HTTP request response pairs on chosen sites

What is Web tracker?

Web tracker is a Chrome extension developed by tomasbortoli, and its main feature is "Record HTTP request response pairs on chosen sites".

Download Web tracker Extension CRX File

Download Web tracker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Web tracker Web tracker
ID ohgpccmhcokfdjmbahhocecmdamegpap
Official URL https://chrome.google.com/webstore/detail/ohgpccmhcokfdjmbahhocecmdamegpap
Description Record HTTP request response pairs on chosen sites
File Size 18.45 KB
Installation Count 18
Current Version 0.1
Last Updated 2017-08-26
Publish Date 2017-08-26
Developer tomasbortoli
Email [email protected]
Payment Type free
Supported Languages 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
    }
}