Web tracker

Record HTTP request response pairs on chosen sites

Что такое Web tracker?

Web tracker - это расширение Chrome, разработанное tomasbortoli, и его основная функция - "Record HTTP request response pairs on chosen sites".

Скачать файл CRX расширения Web tracker

Скачайте файлы расширений Web tracker в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Web tracker Web tracker
ID ohgpccmhcokfdjmbahhocecmdamegpap
Официальный URL https://chrome.google.com/webstore/detail/ohgpccmhcokfdjmbahhocecmdamegpap
Описание Record HTTP request response pairs on chosen sites
Размер файла 18.45 KB
Количество установок 18
Текущая Версия 0.1
Последнее Обновление 2017-08-26
Дата публикации 2017-08-26
Разработчик tomasbortoli
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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
    }
}