Web tracker

Record HTTP request response pairs on chosen sites

Co to jest Web tracker?

Web tracker to rozszerzenie Chrome opracowane przez tomasbortoli, a jego główną funkcją jest „Record HTTP request response pairs on chosen sites”.

Pobierz plik CRX rozszerzenia Web tracker

Pobierz pliki rozszerzeń Web tracker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Web tracker Web tracker
ID ohgpccmhcokfdjmbahhocecmdamegpap
Oficjalny URL https://chrome.google.com/webstore/detail/ohgpccmhcokfdjmbahhocecmdamegpap
Opis Record HTTP request response pairs on chosen sites
Rozmiar pliku 18.45 KB
Liczba instalacji 18
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2017-08-26
Data Publikacji 2017-08-26
Deweloper tomasbortoli
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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
    }
}