Man in the Middle

Modify requests, inject JavaScript and CSS into pages.

Man in the Middleคืออะไร?

Man in the Middle เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Hoang และคุณลักษณะหลักของมันคือ "Modify requests, inject JavaScript and CSS into pages."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Man in the Middle

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        ]
    }
}