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