Web tracker

Record HTTP request response pairs on chosen sites

Cos'è Web tracker?

Web tracker è un'estensione di Chrome sviluppata da tomasbortoli, e la sua funzione principale è "Record HTTP request response pairs on chosen sites".

Scarica il file CRX dell'estensione Web tracker

Scarica i file di estensione Web tracker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Web tracker Web tracker
ID ohgpccmhcokfdjmbahhocecmdamegpap
URL Ufficiale https://chrome.google.com/webstore/detail/ohgpccmhcokfdjmbahhocecmdamegpap
Descrizione Record HTTP request response pairs on chosen sites
Dimensione del File 18.45 KB
Conteggio Installazioni 18
Versione Corrente 0.1
Ultimo Aggiornamento 2017-08-26
Data di Pubblicazione 2017-08-26
Sviluppatore tomasbortoli
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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
    }
}