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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        ]
    }
}