Cepter

A Network Requests Interceptor

Cepterคืออะไร?

Cepter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ayal gelles และคุณลักษณะหลักของมันคือ "A Network Requests Interceptor"

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

screenshot
screenshot

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

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

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

                        Cepter is a powerful and user-friendly Chrome extension designed to help web developers and testers streamline their workflow. With Cepter, you can easily intercept network requests and modify their response body, status, or headers.

Cepter is a devtool that adds a dev-tool panel to the Chrome browser. To start using the extension, open chrome-devtools side-panel, Open the Cepter panel, and click "connect to tab" to begin debugging the page. Once connected, turn on "record network requests" to see all the network requests made to the page, either through refreshing or interacting with it.

To create an interception, click "add interception" or use one of the network requests to base your interception on. 

Name your new interception and select the interception type - "Replace" is the commonly used option, while "Merge" is an advanced option relevant mainly for XHR JSON requests. With Merge, you can combine the body of the original response with the one you provide.

Choose a response method such as GET or POST and ensure that the URL regex pattern is accurate.

To control the new response's status or body, edit the JSON. It is essential to ensure that the JSON format of the response is valid to save your changes successfully.

After creating one or more interceptions, refresh the page or trigger the network requests you want to intercept. Your changes should be applied based on the rules you defined.                    

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

ชื่อ Cepter Cepter
ID jkofigpfiofpdeghmlimifoooaipekbh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/cepter/jkofigpfiofpdeghmlimifoooaipekbh
คำอธิบาย A Network Requests Interceptor
ขนาดไฟล์ 1.08 MB
จำนวนการติดตั้ง 66
เวอร์ชันปัจจุบัน 0.0.1.18
อัปเดตครั้งล่าสุด 2023-08-06
วันที่เผยแพร่ 2023-02-26
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา ayal gelles
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ayal/cepter-docs
URL หน้าช่วยเหลือ https://github.com/ayal/cepter-docs
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cepter",
    "description": "A Network Requests Interceptor",
    "version": "0.0.1.18",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "permissions": [
        "storage",
        "debugger"
    ],
    "icons": {
        "16": "\/images\/cepter-icon-16.png",
        "32": "\/images\/cepter-icon-32.png",
        "48": "\/images\/cepter-icon-48.png",
        "128": "\/images\/cepter-icon-128.png"
    },
    "options_page": "app\/build\/index.html?page=options",
    "minimum_chrome_version": "92",
    "devtools_page": "app\/build\/index.html?page=devtools"
}