Web tracker

Record HTTP request response pairs on chosen sites

什麼是Web tracker?

Web tracker是由tomasbortoli開發的Chrome擴展程式,該擴展的主要功能是“Record HTTP request response pairs on chosen sites”。

下載Web tracker擴展crx文件

下載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
官方網址 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
    }
}