HTTP Headers

Displays the current tab’s HTTP request and response or a Live HTTP Headers tab showing a stream of requests and responses.

HTTP Headers क्या है?

HTTP Headers Paul Hempshall द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Displays the current tab’s HTTP request and response or a Live HTTP Headers tab showing a stream of requests and responses."।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        HTTP Headers was written when the original HTTP Headers (HTTP Headers Live) extension sold out to malware injection and adverts. I decided it was time to write my own clean, ad-free, safe version that I didn't have to worry about. 

Features:

- Light or Dark Theme
- Current tab's HTTP Headers
- Live HTTP Headers tab (+ a bunch of filters)
- Free and Open Source.


Permissions Information:

This extension requires the 'webRequest' feature to function and will show up when installing as 'read and change data on any website'. The permission allows reading of the request and response headers.

The 'tabs' permission is required for the FilterByTabs function of the Live stream.

Finally, the permission 'storage' is required to save the plugin's configuration information.


Privacy Policy:
Updated User Data Policy (Strobe)

I do not collect or process any information with this extension. I will never collect or process information with this extension. No analytics, no tracking, no adverts, nothing.

Google Chrome Policy: Purple Potassium
Removed 'webRequestBlocking' permission. Not needed.


Free and Open Source.

Contact me for bug reports/suggestions;

Web: https://www.paulhempshall.com
Email: [email protected]
GitHub: https://github.com/phempshall/http-headers
Chrome Store: https://chrome.google.com/webstore/detail/http-headers/fabjnpecogealbfoebkcjfbmdhnnfhbj

(c) Copyright 2016-2021 Paul Hempshall                    

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

नाम HTTP Headers HTTP Headers
ID fabjnpecogealbfoebkcjfbmdhnnfhbj
आधिकारिक URL https://chromewebstore.google.com/detail/http-headers/fabjnpecogealbfoebkcjfbmdhnnfhbj
विवरण Displays the current tab’s HTTP request and response or a Live HTTP Headers tab showing a stream of requests and responses.
फ़ाइल का आकार 35.46 KB
स्थापना संख्या 10,000
वर्तमान संस्करण 1.0.6
अंतिम अपडेट 2021-09-03
प्रकाशन तिथि 2019-09-30
रेटिंग 4.10/5 कुल 10 रेटिंग्स
डेवलपर Paul Hempshall
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/phempshall/http-headers
सहायता पृष्ठ URL https://github.com/phempshall/http-headers
समर्थित भाषाएँ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "author": "Paul Hempshall",
    "name": "HTTP Headers",
    "version": "1.0.6",
    "description": "Displays the current tab\u2019s HTTP request and response or a Live HTTP Headers tab showing a stream of requests and responses.",
    "background": {
        "page": "headersBackground.html"
    },
    "browser_action": {
        "default_title": "HTTP Headers",
        "default_popup": "headersPopup.html"
    },
    "options_ui": {
        "page": "headersOptions.html",
        "open_in_tab": true
    },
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "64": "icon-64.png",
        "128": "icon-128.png",
        "256": "icon-256.png"
    },
    "permissions": [
        "webRequest",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tabs",
        "storage"
    ]
}