Web tracker

Record HTTP request response pairs on chosen sites

Web tracker là gì?

Web tracker là một tiện ích mở rộng Chrome được phát triển bởi tomasbortoli, và tính năng chính của nó là "Record HTTP request response pairs on chosen sites".

Tải xuống tệp CRX của tiện ích mở rộng Web tracker

Tải xuống các tệp mở rộng Web tracker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Web tracker Web tracker
ID ohgpccmhcokfdjmbahhocecmdamegpap
URL Chính Thức https://chrome.google.com/webstore/detail/ohgpccmhcokfdjmbahhocecmdamegpap
Mô tả Record HTTP request response pairs on chosen sites
Kích Thước Tệp 18.45 KB
Số Lần Cài Đặt 18
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2017-08-26
Ngày Phát Hành 2017-08-26
Nhà Phát Triển tomasbortoli
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
    }
}