HTTP-TRACKER

Inspect HTTP request headers, cookies, data, response Headers, cookies and add/modify request headers before sending requests

¿Qué es HTTP-TRACKER?

HTTP-TRACKER es una extensión de Chrome desarrollada por Venu Madhav, y su función principal es "Inspect HTTP request headers, cookies, data, response Headers, cookies and add/modify request headers before sending requests".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión HTTP-TRACKER

Descarga archivos de extensión HTTP-TRACKER en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Monitors browser network for all tabs, pages in a single extension window. Track network traffic like request headers, cookies sent from each tab for each request, and corresponding response headers, cookies. This extension provides feasibility to filter and capture only a set of requests, or 
 to exclude a set of requests, block a set of requests. Works like a "tamper data", "web interceptor", "web sniffer", "network monitor", "headers editor", "headers monitor", "cookies editor", "http headers", "request interceptor", etc

From the captured data, you can filter requests to view based on various attributes, clear all captured data, compare with previous/different requests, single page to see all the traffic in a centralized place instead of each tab. 

Add/modify the request headers before sending the request for all requests or for a domain or for a single url
Delete all cookies for the selected domain, or for a domain of your wish.


Features:
        - Single instance add-on - Always loads a single instance popup/tab which gets activated on further clicks
        - Non blocking (async) monitoring of the browser traffic, with no additional delay to the actual requests
        - request-response pairing
        - Capture only required url's containing particular pattern(s)
        - Exclude all unwanted url's containing particular patterns(s)
        - Block request url's containing particular patterns(s) to simulate a 404 behavior
        - Mask data in form fields containing particular patterns(s)
        - Filter url's to display and analyze
        - Delete complete captured data
        - Delete single url which was captured
        - Delete all the filtered data
        - Compare request and responses between sessions and incognito (need access to incognito)
        - Capture form data only if needed
        - Use preferences page to store settings in the browser storage to avoid repeated entry of patterns
        - High security
        - High performance
        - Tool tips on the page to give an understanding of the page elements
        - Pause and resume the tracker
        - Add or modify request headers before sending requests
        - Delete all cookies for a domain (either selected event or manually)
        - Tool tip on each UI component to easily give users the info of what the component does
        - Find text in details with highlighting text

Security:
        - Mask form fields data like usernames, passwords, etc providing high security
        - Information about your browsing is never transmitted or disclosed to either the add-on developers or any other party

Performance:
        - Works async - Near to zero delay to the actual http request
        - Filter results in < 100 ms when the captured results are more than 10K

Accessibility:
        - Easy access to the add-on : use command/Control + Shift + 1 any time to open the add-on window
        - Single instance window

Other links
        - Link to Firefox add-on : https://addons.mozilla.org/en-US/firefox/addon/http-tracker/

Reviews / Ratings:
        - Please like and rate the add-on - A lot of effort has been put in developing this add-on                    

Información Básica de la Extensión

Nombre HTTP-TRACKER HTTP-TRACKER
ID fklakbbaaknbgcedidhblbnhclijnhbi
URL Oficial https://chromewebstore.google.com/detail/http-tracker/fklakbbaaknbgcedidhblbnhclijnhbi
Descripción Inspect HTTP request headers, cookies, data, response Headers, cookies and add/modify request headers before sending requests
Tamaño del Archivo 85.4 KB
Cantidad de Instalaciones 20,000
Versión Actual 2.2.6
Última Actualización 2022-03-29
Fecha de Publicación 2020-08-04
Calificación 4.96/5 Total de 27 Calificaciones
Desarrollador Venu Madhav
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Venu Madhav",
    "background": {
        "scripts": [
            "\/src\/js\/httpTrackerConstants.js",
            "\/src\/js\/httpTrackerUtils.js",
            "\/src\/js\/httpTrackerOpen.js"
        ]
    },
    "description": "Inspect HTTP request headers, cookies, data, response Headers, cookies and add\/modify request headers before sending requests",
    "manifest_version": 2,
    "name": "HTTP-TRACKER",
    "permissions": [
        "storage",
        "webRequest",
        "",
        "webRequestBlocking",
        "tabs",
        "cookies"
    ],
    "version": "2.2.6",
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "16": "\/src\/assets\/icon_320px.png",
            "32": "\/src\/assets\/icon_320px.png"
        },
        "default_title": "HTTP-TRACKER : Inspect HTTP request headers, cookies, data, response Headers, cookies and add\/modify request headers before sending requests"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+1"
            },
            "description": "Open HTTP-TRACKER if not opened, or bring to front if already opened"
        }
    },
    "options_ui": {
        "page": "\/src\/html\/options.html",
        "open_in_tab": true
    },
    "icons": {
        "320": "\/src\/assets\/icon_320px.png"
    }
}