Web tracker

Record HTTP request response pairs on chosen sites

Apa itu Web tracker?

Web tracker adalah ekstensi Chrome yang dikembangkan oleh tomasbortoli, dan fitur utamanya adalah "Record HTTP request response pairs on chosen sites".

Unduh Berkas CRX Ekstensi Web tracker

Unduh file ekstensi Web tracker dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Web tracker Web tracker
ID ohgpccmhcokfdjmbahhocecmdamegpap
URL Resmi https://chrome.google.com/webstore/detail/ohgpccmhcokfdjmbahhocecmdamegpap
Deskripsi Record HTTP request response pairs on chosen sites
Ukuran File 18.45 KB
Jumlah Instalasi 18
Versi Saat Ini 0.1
Terakhir Diperbarui 2017-08-26
Tanggal Publikasi 2017-08-26
Pengembang tomasbortoli
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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
    }
}