Web tracker

Record HTTP request response pairs on chosen sites

Wat is Web tracker?

Web tracker is een Chrome-extensie ontwikkeld door tomasbortoli, en de belangrijkste functie is "Record HTTP request response pairs on chosen sites".

Download het CRX-bestand van de extensie Web tracker

Download Web tracker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Web tracker Web tracker
ID ohgpccmhcokfdjmbahhocecmdamegpap
Officiële URL https://chrome.google.com/webstore/detail/ohgpccmhcokfdjmbahhocecmdamegpap
Beschrijving Record HTTP request response pairs on chosen sites
Bestandsgrootte 18.45 KB
Aantal Installaties 18
Huidige Versie 0.1
Laatst Bijgewerkt 2017-08-26
Publicatiedatum 2017-08-26
Ontwikkelaar tomasbortoli
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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
    }
}