Man in the Middle

Modify requests, inject JavaScript and CSS into pages.

Man in the Middle là gì?

Man in the Middle là một tiện ích mở rộng Chrome được phát triển bởi Hoang, và tính năng chính của nó là "Modify requests, inject JavaScript and CSS into pages.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Man in the Middle

Tải xuống các tệp mở rộng Man in the Middle dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Man in the Middle Man in the Middle
ID mfgcopdhimkemcnlhkohjbdjgahmagil
URL Chính Thức https://chromewebstore.google.com/detail/man-in-the-middle/mfgcopdhimkemcnlhkohjbdjgahmagil
Mô tả Modify requests, inject JavaScript and CSS into pages.
Kích Thước Tệp 40.41 KB
Số Lần Cài Đặt 829
Phiên Bản Hiện Tại 3.2.2
Cập Nhật Lần Cuối 2022-03-02
Ngày Phát Hành 2018-12-14
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Hoang
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/dangkyokhoang/man-in-the-middle
URL Trang Trợ Giúp https://github.com/dangkyokhoang/man-in-the-middle
URL Trang Chính Sách Bảo Mật https://dangkyokhoang.github.io/privacy-policy/browser-extension
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}