Man in the Middle

Modify requests, inject JavaScript and CSS into pages.

什么是Man in the Middle?

Man in the Middle是由Hoang开发的Chrome扩展程序,该扩展的主要功能是“Modify requests, inject JavaScript and CSS into pages.”。

扩展截图

screenshot
screenshot
screenshot

下载Man in the Middle扩展crx文件

下载Man in the Middle扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Man in the Middle Man in the Middle
ID mfgcopdhimkemcnlhkohjbdjgahmagil
官方URL https://chromewebstore.google.com/detail/man-in-the-middle/mfgcopdhimkemcnlhkohjbdjgahmagil
简介 Modify requests, inject JavaScript and CSS into pages.
文件大小 40.41 KB
安装次数 829
当前版本 3.2.2
更新时间 2022-03-02
上架时间 2018-12-14
评分 5.00/5 共1次评分
开发者 Hoang
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/dangkyokhoang/man-in-the-middle
帮助页面URL https://github.com/dangkyokhoang/man-in-the-middle
隐私政策页面URL https://dangkyokhoang.github.io/privacy-policy/browser-extension
支持的语言 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"
        ]
    }
}