ModifyAjaxResponse

Modify response text of ajax requests

ModifyAjaxResponseคืออะไร?

ModifyAjaxResponse เป็นส่วนขยายของ Chrome ที่พัฒนาโดย opponic และคุณลักษณะหลักของมันคือ "Modify response text of ajax requests"

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

screenshot

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

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

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

                        This extension only overrides the response data in the XMLHTTPRequest object as well as the fetch method. The real response which you can see in DevTools Network panel will not be modified

https://github.com/oppoic/ModifyAjaxResponse                    

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

ชื่อ ModifyAjaxResponse ModifyAjaxResponse
ID odpiadnfijfeggnnodoaaphkkjkmpnia
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/modifyajaxresponse/odpiadnfijfeggnnodoaaphkkjkmpnia
คำอธิบาย Modify response text of ajax requests
ขนาดไฟล์ 94.91 KB
จำนวนการติดตั้ง 96
เวอร์ชันปัจจุบัน 1.6.0
อัปเดตครั้งล่าสุด 2023-11-09
วันที่เผยแพร่ 2023-06-17
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา opponic
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/oppoic/ModifyAjaxResponse
URL หน้าช่วยเหลือ https://github.com/oppoic/ModifyAjaxResponse/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ModifyAjaxResponse",
    "description": "Modify response text of ajax requests",
    "version": "1.6.0",
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "action": {
        "default_icon": {
            "16": "images\/16.png",
            "32": "images\/32.png",
            "48": "images\/48.png",
            "128": "images\/128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_scripts.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/dist\/pageInjectScript.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}