Netify

Debugging proxy that will allow you to intercept and mutate requests from a web page

Netifyคืออะไร?

Netify เป็นส่วนขยายของ Chrome ที่พัฒนาโดย vladlavrik และคุณลักษณะหลักของมันคือ "Debugging proxy that will allow you to intercept and mutate requests from a web page"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Netify

ดาวน์โหลดไฟล์ส่วนขยาย Netify ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Netify is a debugging proxy that will allow you to intercept and mutate your requests, like Fiddler or Charles, but it more compact and implemented directly in the Chrome devtools.

Features that Netify gives you:
- Filter requests for proxy by URL, method or type of resource.
- Redirect request to arbitrary URL.
- Adding, replacing and removing request headers.
- Replacing the request body, text/JSON, Base64 or form data.
- Replacing the response status code.
- Adding, replacing and removing response headers.
- Replacing the response body with a text value, Base64, or file's content.
- Adding an extra response delay
- Cancel request on the client.
- The above changes can be made according to predefined rules, by script or by making changes to the intercepted request (like breakpoint).

Attention!!!
This extension is based on the experimental features of the Chrome Devtool protocol, which may lead to inoperability with the update of the browser.

If you have some trouble with Netify or you have some suggestions, please report it here (https://github.com/vladlavrik/netify/issues)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Netify Netify
ID mdafhjaillpdogjdigdkmnoddeoegblj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/netify/mdafhjaillpdogjdigdkmnoddeoegblj
คำอธิบาย Debugging proxy that will allow you to intercept and mutate requests from a web page
ขนาดไฟล์ 1.24 MB
จำนวนการติดตั้ง 6,000
เวอร์ชันปัจจุบัน 0.4.0
อัปเดตครั้งล่าสุด 2023-12-18
วันที่เผยแพร่ 2020-02-04
คะแนน 4.75/5 รวมทั้งหมด 28 คะแนน
ผู้พัฒนา vladlavrik
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/vladlavrik/netify
URL หน้าช่วยเหลือ https://github.com/vladlavrik/netify/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Netify",
    "description": "Debugging proxy that will allow you to intercept and mutate requests from a web page",
    "author": "Vlad Lavrik ",
    "version": "0.4.0",
    "icons": {
        "16": "icons\/logo-16.png",
        "48": "icons\/logo-48.png",
        "128": "icons\/logo-128.png"
    },
    "minimum_chrome_version": "88.0.0.0",
    "devtools_page": "devtool.html",
    "action": {
        "default_icon": {
            "16": "icons\/logo-inactive-16.png",
            "24": "icons\/logo-inactive-24.png",
            "32": "icons\/logo-inactive-32.png"
        },
        "default_title": "Netify (inactive)"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_security_policy": {
        "sandbox": "sandbox allow-scripts; default-src 'self'; child-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'"
    },
    "sandbox": {
        "pages": [
            "sandbox.html"
        ]
    },
    "permissions": [
        "debugger",
        "tabs"
    ]
}