Man in the Middle

Modify requests, inject JavaScript and CSS into pages.

Cos'è Man in the Middle?

Man in the Middle è un'estensione di Chrome sviluppata da Hoang, e la sua funzione principale è "Modify requests, inject JavaScript and CSS into pages.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Man in the Middle

Scarica i file di estensione Man in the Middle in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Man in the Middle Man in the Middle
ID mfgcopdhimkemcnlhkohjbdjgahmagil
URL Ufficiale https://chromewebstore.google.com/detail/man-in-the-middle/mfgcopdhimkemcnlhkohjbdjgahmagil
Descrizione Modify requests, inject JavaScript and CSS into pages.
Dimensione del File 40.41 KB
Conteggio Installazioni 829
Versione Corrente 3.2.2
Ultimo Aggiornamento 2022-03-02
Data di Pubblicazione 2018-12-14
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Hoang
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/dangkyokhoang/man-in-the-middle
URL della Pagina di Aiuto https://github.com/dangkyokhoang/man-in-the-middle
URL della Pagina della Politica sulla Privacy https://dangkyokhoang.github.io/privacy-policy/browser-extension
Lingue Supportate 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"
        ]
    }
}