Man in the Middle

Modify requests, inject JavaScript and CSS into pages.

O que é Man in the Middle?

Man in the Middle é uma extensão do Chrome desenvolvida por Hoang, e sua principal característica é "Modify requests, inject JavaScript and CSS into pages.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Man in the Middle

Baixe arquivos de extensão Man in the Middle no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Man in the Middle Man in the Middle
ID mfgcopdhimkemcnlhkohjbdjgahmagil
URL Oficial https://chromewebstore.google.com/detail/man-in-the-middle/mfgcopdhimkemcnlhkohjbdjgahmagil
Descrição Modify requests, inject JavaScript and CSS into pages.
Tamanho do Arquivo 40.41 KB
Contagem de Instalações 829
Versão Atual 3.2.2
Última Atualização 2022-03-02
Data de Publicação 2018-12-14
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Hoang
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/dangkyokhoang/man-in-the-middle
URL da Página de Ajuda https://github.com/dangkyokhoang/man-in-the-middle
URL da Página de Política de Privacidade https://dangkyokhoang.github.io/privacy-policy/browser-extension
Idiomas Suportados 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"
        ]
    }
}