Man in the Middle

Modify requests, inject JavaScript and CSS into pages.

Apa itu Man in the Middle?

Man in the Middle adalah ekstensi Chrome yang dikembangkan oleh Hoang, dan fitur utamanya adalah "Modify requests, inject JavaScript and CSS into pages.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Man in the Middle

Unduh file ekstensi Man in the Middle dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Man in the Middle Man in the Middle
ID mfgcopdhimkemcnlhkohjbdjgahmagil
URL Resmi https://chromewebstore.google.com/detail/man-in-the-middle/mfgcopdhimkemcnlhkohjbdjgahmagil
Deskripsi Modify requests, inject JavaScript and CSS into pages.
Ukuran File 40.41 KB
Jumlah Instalasi 829
Versi Saat Ini 3.2.2
Terakhir Diperbarui 2022-03-02
Tanggal Publikasi 2018-12-14
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Hoang
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/dangkyokhoang/man-in-the-middle
URL Halaman Bantuan https://github.com/dangkyokhoang/man-in-the-middle
URL Halaman Kebijakan Privasi https://dangkyokhoang.github.io/privacy-policy/browser-extension
Bahasa yang Didukung 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"
        ]
    }
}