Man in the Middle

Modify requests, inject JavaScript and CSS into pages.

Was ist Man in the Middle?

Man in the Middle ist eine Chrome-Erweiterung, die von Hoang entwickelt wurde, und ihr Hauptmerkmal ist "Modify requests, inject JavaScript and CSS into pages.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Man in the Middle-Erweiterungs-CRX-Datei herunterladen

Laden Sie Man in the Middle-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Man in the Middle Man in the Middle
ID mfgcopdhimkemcnlhkohjbdjgahmagil
Offizielle URL https://chromewebstore.google.com/detail/man-in-the-middle/mfgcopdhimkemcnlhkohjbdjgahmagil
Beschreibung Modify requests, inject JavaScript and CSS into pages.
Dateigröße 40.41 KB
Installationsanzahl 829
Aktuelle Version 3.2.2
Letztes Update 2022-03-02
Veröffentlichungsdatum 2018-12-14
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Hoang
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/dangkyokhoang/man-in-the-middle
Hilfeseite URL https://github.com/dangkyokhoang/man-in-the-middle
URL der Datenschutzrichtlinien-Seite https://dangkyokhoang.github.io/privacy-policy/browser-extension
Unterstützte Sprachen 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"
        ]
    }
}