simple-modify-headers

Simple Modify headers

simple-modify-headers क्या है?

simple-modify-headers didierfred द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simple Modify headers"।

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

screenshot

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

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

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

                        The extension rewrite the headers based on a rules table.

It's possible to:

    add , modify or delete header field for HTTP(S) request or response
    export the configuration in a file (json format)
    import the configuration from a file 
    choose urls on which the modifications applies 

In order to work, the following extension permissions are needed :

    storage : needed to store the configuration 
    activeTab, tabs : needed to show the configuration screen in the browser tab.
    webRequest,webRequestBlocking, : needed to modify the headers

More information on https://github.com/didierfred/SimpleModifyHeaders

The code is opensource under Mozilla Public License 2.0                    

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

नाम simple-modify-headers simple-modify-headers
ID gjgiipmpldkpbdfjkgofildhapegmmic
आधिकारिक URL https://chromewebstore.google.com/detail/simple-modify-headers/gjgiipmpldkpbdfjkgofildhapegmmic
विवरण Simple Modify headers
फ़ाइल का आकार 139 KB
स्थापना संख्या 14,752
वर्तमान संस्करण 1.8.1
अंतिम अपडेट 2022-03-15
प्रकाशन तिथि 2019-09-17
रेटिंग 4.50/5 कुल 12 रेटिंग्स
डेवलपर didierfred
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/didierfred/SimpleModifyHeaders/tree/v1.8.1
सहायता पृष्ठ URL https://github.com/didierfred/SimpleModifyHeaders/tree/v1.8.1
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Simple Modify headers ",
    "manifest_version": 2,
    "name": "simple-modify-headers",
    "version": "1.8.1",
    "homepage_url": "https:\/\/github.com\/didierfred\/SimpleModifyHeaders",
    "icons": {
        "48": "icons\/modify-48.png"
    },
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "",
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/modify-32.png",
        "default_title": "Simple Modify Headers",
        "default_popup": "popup\/menu.html"
    }
}