Man in the Middle

Modify requests, inject JavaScript and CSS into pages.

Co to jest Man in the Middle?

Man in the Middle to rozszerzenie Chrome opracowane przez Hoang, a jego główną funkcją jest „Modify requests, inject JavaScript and CSS into pages.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Man in the Middle

Pobierz pliki rozszerzeń Man in the Middle 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

                        IMPORTANT NOTE: This is a compatible version of the extension Man in the Middle for Firefox. Some features won't work in this version for Chrome. See https://github.com/dangkyokhoang/Man-in-the-Middle/projects/1#card-15622712 for more.

Use cases:
- Block or redirect websites and requests;
- Add, modify or remove request and response headers;
- Inject JavaScript into pages to make them function as desired;
- Inject CSS into pages to style them as desired.

Visit https://github.com/dangkyokhoang/Man-in-the-Middle for more details.                    

Podstawowe informacje o rozszerzeniu

Nazwa Man in the Middle Man in the Middle
ID mfgcopdhimkemcnlhkohjbdjgahmagil
Oficjalny URL https://chromewebstore.google.com/detail/man-in-the-middle/mfgcopdhimkemcnlhkohjbdjgahmagil
Opis Modify requests, inject JavaScript and CSS into pages.
Rozmiar pliku 40.41 KB
Liczba instalacji 829
Aktualna Wersja 3.2.2
Ostatnia Aktualizacja 2022-03-02
Data Publikacji 2018-12-14
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Hoang
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/dangkyokhoang/man-in-the-middle
Adres URL Strony Pomocy https://github.com/dangkyokhoang/man-in-the-middle
Adres URL Strony Polityki Prywatności https://dangkyokhoang.github.io/privacy-policy/browser-extension
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Man in the Middle",
    "version": "3.2.2",
    "description": "Modify requests, inject JavaScript and CSS into pages.",
    "permissions": [
        "",
        "storage",
        "unlimitedStorage",
        "webNavigation",
        "webRequest",
        "webRequestBlocking"
    ],
    "icons": {
        "64": "src\/img\/icon\/mitm_on_64.png"
    },
    "browser_action": {
        "default_icon": {
            "32": "src\/img\/icon\/mitm_on_32.png"
        }
    },
    "background": {
        "page": "src\/page\/background\/background.html"
    },
    "options_ui": {
        "page": "src\/page\/options\/options.html",
        "open_in_tab": true
    },
    "sandbox": {
        "pages": [
            "src\/page\/background\/frame\/sandbox.html"
        ]
    }
}