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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
    }
}