Man in the Middle

Modify requests, inject JavaScript and CSS into pages.

Qu'est-ce que Man in the Middle ?

Man in the Middle est une extension Chrome développée par Hoang, et sa fonction principale est "Modify requests, inject JavaScript and CSS into pages.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Man in the Middle

Téléchargez les fichiers d'extension Man in the Middle au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Man in the Middle Man in the Middle
ID mfgcopdhimkemcnlhkohjbdjgahmagil
URL Officiel https://chromewebstore.google.com/detail/man-in-the-middle/mfgcopdhimkemcnlhkohjbdjgahmagil
Description Modify requests, inject JavaScript and CSS into pages.
Taille du Fichier 40.41 KB
Nombre d'Installations 829
Version Actuelle 3.2.2
Dernière Mise à Jour 2022-03-02
Date de Publication 2018-12-14
Évaluation 5.00/5 Total 1 Évaluations
Développeur Hoang
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/dangkyokhoang/man-in-the-middle
URL de la Page d'Aide https://github.com/dangkyokhoang/man-in-the-middle
URL de la Page de Politique de Confidentialité https://dangkyokhoang.github.io/privacy-policy/browser-extension
Langues Prises en Charge 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"
        ]
    }
}