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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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