simple-modify-headers

Simple Modify headers

Co to jest simple-modify-headers?

simple-modify-headers to rozszerzenie Chrome opracowane przez didierfred, a jego główną funkcją jest „Simple Modify headers”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia simple-modify-headers

Pobierz pliki rozszerzeń simple-modify-headers w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa simple-modify-headers simple-modify-headers
ID gjgiipmpldkpbdfjkgofildhapegmmic
Oficjalny URL https://chromewebstore.google.com/detail/simple-modify-headers/gjgiipmpldkpbdfjkgofildhapegmmic
Opis Simple Modify headers
Rozmiar pliku 139 KB
Liczba instalacji 14,752
Aktualna Wersja 1.8.1
Ostatnia Aktualizacja 2022-03-15
Data Publikacji 2019-09-17
Ocena 4.50/5 Łącznie 12 Oceny
Deweloper didierfred
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/didierfred/SimpleModifyHeaders/tree/v1.8.1
Adres URL Strony Pomocy https://github.com/didierfred/SimpleModifyHeaders/tree/v1.8.1
Obsługiwane Języki 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"
    }
}