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
公式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
Eメール [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
    }
}