Simple-Header-Payload

Use this extension to send user-defined HTTP request headers with an user-defined payload string to an user-defined host only.

Simple-Header-Payload क्या है?

Simple-Header-Payload CAMYA द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Use this extension to send user-defined HTTP request headers with an user-defined payload string to an user-defined host only."।

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

screenshot

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

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

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

                        Simple-Header-Payload is a powerful - yet simple - browser extension which helps you to send user-defined HTTP request headers with an user-defined payload string to an user-defined host only.

Use this extensions in productive, live, development, debug, and maintenance situations, where you want to restrict or allow access to resources on your website.

Documentation: https://www.camya.com/simple-header-payload-browser-extension/

The features

- Supports hosts names and IPv4 and IPv6 addresses.
- Add custom HTTP header name/value pairs or append a value to the User-Agent.
- Activate and deactivated entries.
- Highlights matched host entries.
- Radom payload string generator.
- Inline-editing of the payload string.
- Set optional title and comment for entries.
- Option to show/hide payload string in host list.
- Option to reset extension settings.

How to use the browser extension?

- Open the extension with a left mouse click on its icon.
- Click the "+ Add new host" button.
- Fill out the form with your data. Only the Host / IP field is required.
- Click the "Add" button.
- The host entry is now added to your host list.

How does the extension work?

If you add your own host config, the extension will add your configured payload data to the requests for this specific host only.

The extension only adds your user-defined header data, if the host of a browser tab matches the one from your host config.

All data of this tool is stored in the internal storage of the browser extension itself. Nothing is stored external.

Where to use the extension?

The best place to use custom HTTP headers is on the web server level. You can set coditions in the server config files of your favorite server like Apache, Nginx, or Litespeed. We added some implementation examples below.

Additionally you can add conditions programatically in your scripts in PHP, Python, Perl, aso. You find examples for this also on this page.

Read the full documentation here: https://www.camya.com/simple-header-payload-browser-extension/                    

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

नाम Simple-Header-Payload Simple-Header-Payload
ID kofgcieikebindbfomelbmfhcdipddno
आधिकारिक URL https://chromewebstore.google.com/detail/simple-header-payload/kofgcieikebindbfomelbmfhcdipddno
विवरण Use this extension to send user-defined HTTP request headers with an user-defined payload string to an user-defined host only.
फ़ाइल का आकार 93.04 KB
स्थापना संख्या 322
वर्तमान संस्करण 0.9.0
अंतिम अपडेट 2020-08-20
प्रकाशन तिथि 2020-08-20
डेवलपर CAMYA
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.camya.com/simple-header-payload-browser-extension/
सहायता पृष्ठ URL https://www.camya.com/simple-header-payload-browser-extension/
गोपनीयता नीति पृष्ठ URL https://www.camya.com/imprint
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Simple-Header-Payload",
    "description": "Use this extension to send user-defined HTTP request headers with an user-defined payload string to an user-defined host only.",
    "version": "0.9.0",
    "homepage_url": "https:\/\/www.camya.com\/simple-header-payload-browser-extension\/",
    "author": "camya.com, [email protected]",
    "background": {
        "scripts": [
            "tool.js",
            "storage.js",
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html"
    },
    "icons": {
        "1024": "image\/simple-header-payload_logo_1024.png",
        "128": "image\/simple-header-payload_logo_128.png",
        "48": "image\/simple-header-payload_logo_48.png"
    },
    "browser_action": {
        "default_icon": "image\/simple-header-payload_logo_48_inactive.png",
        "default_popup": "popup.html"
    },
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "storage",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}