HttpWatch

Works with HttpWatch software (versions 11 - 14) on Windows to show HTTP/HTTPS traffic generated by the Chrome browser

HttpWatch क्या है?

HttpWatch https://www.httpwatch.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Works with HttpWatch software (versions 11 - 14) on Windows to show HTTP/HTTPS traffic generated by the Chrome browser"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में HttpWatch एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        PLEASE NOTE: This extension is designed to work with the HttpWatch software version 11 - 14 on Windows (see www.httpwatch.com). It is not intended to be a stand-alone Chrome extension.

HttpWatch supports many additional features compared to the built-in DevTools network panel:

- Supports multi-page debugging by grouping requests by page

- Supports automatic recording and logging of network traffic in each Chrome tab without additional user intervention

- Displays warnings about well know performance and security issues, e.g. ineffective cache settings

- Advanced Find and Filter functions make it easier to locate requests or content

- Automatically masks out passwords in POST form data so that they are not recorded in HWL or HAR files

- Built in summaries of page level statistics, e.g. bytes downloaded, network round trips, etc

- Add comments to requests to help subsequent analysis of log files

- Directly email HWL or HAR files from within the tool

Currently the tool is Windows only and requires a separate download from https://www.httpwatch.com to complete the installation once the Chrome Extension is installed.

HttpWatch acts as an in-browser HTTP sniffer and displays detailed information about HTTP(S) requests generated by Chrome. This information includes:

- HTTP headers
- HTTP cookies
- Status codes and errors
- Query Strings
- POST Data
- Content - image, textual and binary
- Timings                    

एक्सटेंशन की मूल जानकारी

नाम HttpWatch HttpWatch
ID dajhhgiioackgdldomhppobgjbinhimh
आधिकारिक URL https://chromewebstore.google.com/detail/httpwatch/dajhhgiioackgdldomhppobgjbinhimh
विवरण Works with HttpWatch software (versions 11 - 14) on Windows to show HTTP/HTTPS traffic generated by the Chrome browser
फ़ाइल का आकार 67.42 KB
स्थापना संख्या 84,874
वर्तमान संस्करण 14.0.13
अंतिम अपडेट 2022-08-10
प्रकाशन तिथि 2020-06-06
रेटिंग 2.09/5 कुल 11 रेटिंग्स
डेवलपर https://www.httpwatch.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.httpwatch.com/
सहायता पृष्ठ URL https://www.httpwatch.com/support/
गोपनीयता नीति पृष्ठ URL https://www.httpwatch.com/company/privacy_policy.aspx
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HttpWatch",
    "short_name": "HttpWatch",
    "description": "Works with HttpWatch software (versions 11 - 14) on Windows to show HTTP\/HTTPS traffic generated by the Chrome browser",
    "version": "14.0.13",
    "minimum_chrome_version": "50",
    "homepage_url": "https:\/\/www.httpwatch.com",
    "icons": {
        "16": "httpwatch_16.png",
        "32": "httpwatch_32.png",
        "48": "httpwatch_48.png",
        "128": "httpwatch_128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "httpwatch_16_d.png",
            "32": "httpwatch_32_d.png",
            "48": "httpwatch_48_d.png",
            "128": "httpwatch_128_d.png"
        },
        "default_title": "HttpWatch: record, analyze and save HTTP requests",
        "default_popup": "popup.htm"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+H"
            }
        }
    },
    "permissions": [
        "activeTab",
        "browsingData",
        "contextMenus",
        "debugger",
        "nativeMessaging",
        "tabs",
        "webNavigation",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "shared.js",
            "native.js",
            "debug.js",
            "tabs.js",
            "httpwatch.js"
        ]
    },
    "web_accessible_resources": [
        "recording_started.htm"
    ]
}