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
官方網址 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"
        ]
    }
}